Files
EgtDOORCreator/ProjectManager/SelectPartV.xaml
T
2024-12-16 12:07:28 +01:00

43 lines
1.9 KiB
XML

<EgtWPFLib5:EgtCustomWindow x:Class="SelectPartV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5"
Title="{Binding Title}"
Style="{DynamicResource {x:Type EgtWPFLib5:EgtCustomWindow}}"
WindowStyle="None" ResizeMode="NoResize" TitleBarHeight="30" IsResizable="False"
IsMinimizable="False" WindowStartupLocation="CenterScreen" ShowInTaskbar="False"
Height="110" Width="300" Topmost="True"
DataContext="{Binding RelativeSource={RelativeSource Self}}">
<!--<EgtWPFLib5:EgtCustomWindow.Resources>
<EgtWPFLib5:FileNameConverter x:Key="FileNameConverter"/>
</EgtWPFLib5:EgtCustomWindow.Resources>-->
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="1*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="1*"/>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<UniformGrid Grid.Row="0"
Columns="2"
Grid.ColumnSpan="2">
<TextBlock Text="{Binding PartDoorMsg}"
Style="{DynamicResource SelectTxBl}"/>
<ComboBox ItemsSource="{Binding PartDoorList}"
SelectedItem="{Binding Selection}"
Style="{DynamicResource SelectCmBx}"/>
</UniformGrid>
<Button Grid.Row="2"
Grid.ColumnSpan="2"
Name="OkBtn"
Content="{Binding SaveMsg}"
Style="{DynamicResource EgtWPFLib5_SelectButton}"/>
</Grid>
</EgtWPFLib5:EgtCustomWindow>