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.
29 lines
1.2 KiB
29 lines
1.2 KiB
<Application x:Class="ICSharpCode.ILSpy.App" |
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
xmlns:styles="urn:TomsToolbox.Wpf.Styles" |
|
xmlns:toms="urn:TomsToolbox" |
|
xmlns:ilSpy="clr-namespace:ICSharpCode.ILSpy" |
|
xmlns:themes="clr-namespace:ICSharpCode.ILSpy.Themes" |
|
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"/> |
|
<Setter Property="toms:StyleBindings.Behaviors"> |
|
<Setter.Value> |
|
<toms:BehaviorCollection> |
|
<themes:WindowStyleManagerBehavior /> |
|
</toms:BehaviorCollection> |
|
</Setter.Value> |
|
</Setter> |
|
</Style> |
|
|
|
<Style TargetType="{x:Type Button}" BasedOn="{StaticResource {x:Static styles:ResourceKeys.ButtonStyle}}"> |
|
<Setter Property="MinWidth" Value="73" /> |
|
<Setter Property="Padding" Value="9,1,9,1" /> |
|
</Style> |
|
|
|
</Application.Resources> |
|
</Application> |