17 lines
806 B
XML
17 lines
806 B
XML
<Application x:Class="S7Explorer.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:S7Explorer"
|
|
StartupUri="MainWindow.xaml">
|
|
<Application.Resources>
|
|
<!-- Define the application resources -->
|
|
<Style x:Key="ToolbarButtonStyle" TargetType="Button">
|
|
<Setter Property="Margin" Value="5" />
|
|
<Setter Property="Padding" Value="8,3" />
|
|
<Setter Property="MinWidth" Value="80" />
|
|
</Style>
|
|
|
|
<Style x:Key="StatusTextStyle" TargetType="TextBlock">
|
|
<Setter Property="Margin" Value="5" />
|
|
<Setter Property="VerticalAlignment" Value="Center" />
|
|
</Style>
|
|
</Application.Resources>
|
|
</Application> |