diff --git a/28_MAUI_II.md b/28_MAUI_II.md index 0933577..cefe120 100644 --- a/28_MAUI_II.md +++ b/28_MAUI_II.md @@ -16,7 +16,7 @@ import: https://raw.githubusercontent.com/TUBAF-IfI-LiaScript/VL_Softwareentwick --> -[![LiaScript](https://raw.githubusercontent.com/LiaScript/LiaScript/master/badges/course.svg)](https://liascript.github.io/course/?https://github.com/TUBAF-IfI-LiaScript/VL_Softwareentwicklung/blob/master/27_MAUI_II.md) +[![LiaScript](https://raw.githubusercontent.com/LiaScript/LiaScript/master/badges/course.svg)](https://liascript.github.io/course/?https://github.com/TUBAF-IfI-LiaScript/VL_Softwareentwicklung/blob/master/28_MAUI_II.md) # .NET MAUI Elemente @@ -27,7 +27,7 @@ import: https://raw.githubusercontent.com/TUBAF-IfI-LiaScript/VL_Softwareentwick | **Semester** | @config.semester | | **Hochschule:** | @config.university | | **Inhalte:** | @comment | -| **Link auf den GitHub:** | https://github.com/TUBAF-IfI-LiaScript/VL_Softwareentwicklung/blob/master/27_MAUI_II.md | +| **Link auf den GitHub:** | https://github.com/TUBAF-IfI-LiaScript/VL_Softwareentwicklung/blob/master/28_MAUI_II.md | | **Autoren** | @author | ![](https://media.giphy.com/media/26tn33aiTi1jkl6H6/source.gif) @@ -282,7 +282,7 @@ Layoutklassen ermöglichen das Anordnen und Gruppieren von UI-Steuerelementen. ``` -![StackLayout](./img/MAUI_I/StackLayout.png) +![StackLayout](./img/27_Maui/StackLayout.PNG) ```csharp using Microsoft.Maui.Controls; @@ -358,7 +358,7 @@ namespace MauiApp } ``` -![Grid](./img/MAUI_I/Grid.png) +![Grid](./img/27_Maui/Grid.PNG) Um gewünschte Layout zu erstellen ist es unter Umständen notwendig die Layouts zu verschachteln. @@ -549,7 +549,7 @@ Chaos on the desk: ``` -![Chaos](./img/MAUI_I/Chaos.png) +![Chaos](./img/27_Maui/Chaos.PNG) ## App-Lebenszyklus @@ -716,7 +716,7 @@ button.Pressed += (sender, args) => { /* Aktion */ }; button.Released += (sender, args) => { /* Aktion */ }; ``` -![FarbButton](./img/MAUI_II/FarbButton.png) +![FarbButton](./img/27_Maui/FarbButton.PNG) ```csharp public partial class MainPage : ContentPage @@ -811,7 +811,7 @@ listView.ItemSelected += (sender, args) => { /* Aktion */ }; | :---- | :------------------------------------------------ | | **CheckedChanged** | | -![Ampel](./img/MAUI_II/Ampel.png)` +![Ampel](./img/27_Maui/Ampel.PNG)` ```xml @@ -1369,4 +1369,4 @@ https://learn.microsoft.com/de-de/dotnet/maui/get-started/installation?view=net- https://learn.microsoft.com/de-de/dotnet/maui/get-started/first-app?pivots=devices-android&view=net-maui-8.0&tabs=visual-studio-code -https://learn.microsoft.com/de-de/dotnet/maui/get-started/first-app?pivots=devices-windows&view=net-maui-8.0&tabs=visual-studio-code \ No newline at end of file +https://learn.microsoft.com/de-de/dotnet/maui/get-started/first-app?pivots=devices-windows&view=net-maui-8.0&tabs=visual-studio-code diff --git a/img/27_Maui/Ampel.PNG b/img/27_Maui/Ampel.PNG new file mode 100644 index 0000000..a9f342f Binary files /dev/null and b/img/27_Maui/Ampel.PNG differ diff --git a/img/27_Maui/Chaos.PNG b/img/27_Maui/Chaos.PNG new file mode 100644 index 0000000..11d236d Binary files /dev/null and b/img/27_Maui/Chaos.PNG differ diff --git a/img/27_Maui/FarbButton.PNG b/img/27_Maui/FarbButton.PNG new file mode 100644 index 0000000..a9d362c Binary files /dev/null and b/img/27_Maui/FarbButton.PNG differ diff --git a/img/27_Maui/Grid.PNG b/img/27_Maui/Grid.PNG new file mode 100644 index 0000000..8b1784c Binary files /dev/null and b/img/27_Maui/Grid.PNG differ diff --git a/img/27_Maui/StackLayout.PNG b/img/27_Maui/StackLayout.PNG new file mode 100644 index 0000000..7639f2e Binary files /dev/null and b/img/27_Maui/StackLayout.PNG differ