15 lines
1.0 KiB
XML
15 lines
1.0 KiB
XML
<EgtWPFLib5:EgtCustomWindow x:Class="HardwarePartWindowV"
|
|
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}" Icon="/Resources/EgtDOOR.ico"
|
|
TitleBarBrush="{DynamicResource EgalwareIndigo}"
|
|
BorderBrush="{DynamicResource EgalwareIndigo}"
|
|
WindowStyle="None" ResizeMode="NoResize" TitleBarHeight="30" IsResizable="False"
|
|
IsMinimizable="False" WindowStartupLocation="CenterScreen" ShowInTaskbar="False"
|
|
CloseCommand="{Binding CloseOptionsCommand,Mode=OneWay,UpdateSourceTrigger=PropertyChanged}">
|
|
<Grid>
|
|
<ContentControl Content="{Binding HardwarePart}"/>
|
|
</Grid>
|
|
</EgtWPFLib5:EgtCustomWindow>
|