c207c6f583
-> ho tolto dalla OptionPage il tab che si riferisce alle dimensioni dell'Hardware e ho ripristinato il bottone nella barra dei comandi della grafica; -> ho sostituito i bottoni "Hardware" e "Door" con due RadioButton, cambiata anche la posizione; -> ho aggiornato le icone "SaveAs" e "HardwarePart".
15 lines
798 B
XML
15 lines
798 B
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="{StaticResource EgaltechBlue1}"
|
|
BorderBrush="{StaticResource EgaltechBlue1}"
|
|
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>
|