21 lines
931 B
XML
21 lines
931 B
XML
<Application x:Class="BreCalClient.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:BreCalClient"
|
|
xmlns:sys="clr-namespace:System;assembly=mscorlib"
|
|
StartupUri="MainWindow.xaml" Exit="Application_Exit" Startup="Application_Startup" >
|
|
<Application.Resources>
|
|
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="Resources\StringResources.xaml"/>
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
<sys:Double x:Key="{x:Static SystemParameters.VerticalScrollBarWidthKey}">10</sys:Double>
|
|
<sys:Double x:Key="{x:Static SystemParameters.HorizontalScrollBarHeightKey}">10</sys:Double>
|
|
|
|
</ResourceDictionary>
|
|
|
|
</Application.Resources>
|
|
</Application>
|