mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
699 B
17 lines
699 B
<Application x:Class="ICSharpCode.ILSpy.App" |
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
StartupUri="MainWindow.xaml"> |
|
<Application.Resources> |
|
<Style x:Key="DialogWindow" TargetType="{x:Type Window}"> |
|
<Setter Property="ShowInTaskbar" Value="False"/> |
|
<Setter Property="UseLayoutRounding" Value="True"/> |
|
<Setter Property="TextOptions.TextFormattingMode" Value="Display"/> |
|
</Style> |
|
|
|
<Style TargetType="{x:Type Button}"> |
|
<Setter Property="MinWidth" Value="73" /> |
|
<Setter Property="Padding" Value="9,1,9,1" /> |
|
</Style> |
|
</Application.Resources> |
|
</Application> |