#develop (short for SharpDevelop) is a free IDE for .NET programming languages.
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.
 
 
 
 
 
 

35 lines
1.5 KiB

<Application x:Class="SharpDevelop.Samples.XamlDesigner.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sd="http://sharpdevelop.net"
xmlns:Converters="clr-namespace:SharpDevelop.Samples.XamlDesigner.Converters"
xmlns:Default="clr-namespace:SharpDevelop.Samples.XamlDesigner"
StartupUri="MainWindow.xaml"
ShutdownMode="OnMainWindowClose">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/Themes/ExpressionTheme.xaml" />
<ResourceDictionary Source="/AvalonDock;component/Themes/DarkTheme.xaml" />
<ResourceDictionary Source="/SharpDevelop.XamlDesigner;component/App.xaml" />
</ResourceDictionary.MergedDictionaries>
<Converters:CollapsedWhenFalse x:Key="CollapsedWhenFalse" />
<Converters:FalseWhenZero x:Key="FalseWhenZero" />
<!--<Brush x:Key="RecessedBrush">#383838</Brush>
<Brush x:Key="ButtonOverBrush">#3F3F3F</Brush>
<Brush x:Key="MouseOverForegroundBrush">White</Brush>-->
<sd:CommandView x:Key="SaveAll"
Text="Save All"
Shortcut="Control+Shift+S" />
<sd:CommandView x:Key="CloseAll"
Text="Close All" />
</ResourceDictionary>
</Application.Resources>
</Application>