forked from LernMoment/community-fragen
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
siehe LernMoment#3
- Loading branch information
Showing
4 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<Window x:Class="WPF1_Unterfenster.SubWindow" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
xmlns:local="clr-namespace:WPF1_Unterfenster" | ||
mc:Ignorable="d" | ||
Title="Unterfenster für WPF-1" Height="253" Width="533" Background="#F9F2E7"> | ||
<Grid> | ||
<TextBlock Text="Hier könnten die Elemente für die Einstellungen angezeigt werden." Margin="88,88,0,0" Foreground="#00A8C6" FontWeight="Bold"/> | ||
</Grid> | ||
</Window> |
25 changes: 25 additions & 0 deletions
25
WPF-1/WPF1-Unterfenster/WPF1-Unterfenster/SubWindow.xaml.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
using System.Windows; | ||
using System.Windows.Controls; | ||
using System.Windows.Data; | ||
using System.Windows.Documents; | ||
using System.Windows.Input; | ||
using System.Windows.Media; | ||
using System.Windows.Media.Imaging; | ||
using System.Windows.Shapes; | ||
|
||
namespace WPF1_Unterfenster | ||
{ | ||
/// <summary> | ||
/// Interaktionslogik für SubWindow.xaml | ||
/// </summary> | ||
public partial class SubWindow : Window | ||
{ | ||
public SubWindow() | ||
{ | ||
InitializeComponent(); | ||
} | ||
} | ||
} |