Blame view
sources/RoboforkApp/App.xaml
1.64 KB
|
729be9a6d
|
1 2 3 |
<Application x:Class="RoboforkApp.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
d96c9e481
|
4 |
StartupUri="RoboforkMenuView.xaml"> |
|
729be9a6d
|
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Resources/DesignerItem.xaml"/>
<ResourceDictionary Source="Resources/Brushes.xaml"/>
<ResourceDictionary Source="Resources/Expander.xaml"/>
<ResourceDictionary Source="Resources/ScrollBar.xaml"/>
<ResourceDictionary Source="Resources/ScrollViewer.xaml"/>
<ResourceDictionary Source="Resources/Slider.xaml"/>
<ResourceDictionary Source="Resources/Toolbox.xaml"/>
<ResourceDictionary Source="Resources/Tooltip.xaml"/>
<ResourceDictionary Source="Resources/ZoomBox.xaml"/>
<ResourceDictionary Source="Resources/ToolBar.xaml"/>
<ResourceDictionary Source="Resources/Styles.xaml"/>
<ResourceDictionary Source="Resources/StatusBar.xaml"/>
<ResourceDictionary Source="Stencils/BasicShapes.xaml"/>
<ResourceDictionary Source="Stencils/FlowChartSymbols.xaml"/>
<ResourceDictionary Source="Stencils/RegelungstechnikSymbole.xaml"/>
<ResourceDictionary Source="Stencils/SymbolStencils.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>
|