markus / ConvertService / ServiceBase / Markus.Service.StationController / MainWindow.xaml @ 53c9637d
이력 | 보기 | 이력해설 | 다운로드 (1.35 KB)
1 |
<Window x:Class="Markus.Service.StationController.MainWindow" |
---|---|
2 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
3 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
4 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
5 |
xmlns:md="http://materialdesigninxaml.net/winfx/xaml/themes" |
6 |
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes" |
7 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
8 |
Background="{DynamicResource MaterialDesignPaper}" |
9 |
TextElement.Foreground="{DynamicResource MaterialDesignBody}" |
10 |
mc:Ignorable="d" |
11 |
Title="MainWindow" Height="450" Width="800"> |
12 |
<Grid>
|
13 |
<Grid.RowDefinitions>
|
14 |
<RowDefinition Height="2*"/> |
15 |
<RowDefinition Height="8*"/> |
16 |
</Grid.RowDefinitions>
|
17 |
<materialDesign:Card Width="420" Margin="4 2 8 16"> |
18 |
<StackPanel>
|
19 |
<TextBlock Text="Threads" Style="{StaticResource MaterialDesignHeadlineTextBlock}" /> |
20 |
<TextBox Text="test"/> |
21 |
</StackPanel>
|
22 |
</materialDesign:Card>
|
23 |
<DataGrid ItemsSource="{Binding AliveItems}" Grid.Row="1" Style="{StaticResource MaterialDesignDataGrid}" |
24 |
x:Name="DataGrid" ScrollViewer.CanContentScroll="False"> |
25 |
</DataGrid>
|
26 |
</Grid>
|
27 |
</Window>
|