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.
26 lines
1.2 KiB
26 lines
1.2 KiB
<?xml version = "1.0" encoding = "UTF-8" ?>
|
|
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:local="clr-namespace:IHM"
|
|
x:Class="IHM.App">
|
|
<Application.Resources>
|
|
<Style TargetType="Border" x:Key="Rectangle">
|
|
<Setter Property="BackgroundColor" Value="Black"/>
|
|
<Setter Property="Padding" Value="7"/>
|
|
<Setter Property="StrokeShape" Value="RoundRectangle 40"/>
|
|
</Style>
|
|
<Style TargetType="Entry" x:Key="ZoneTaper">
|
|
<Setter Property="BackgroundColor" Value="White"/>
|
|
<Setter Property="TextColor" Value="Black"/>
|
|
<Setter Property="VerticalTextAlignment" Value="Center"/>
|
|
<Setter Property="FontSize" Value="15"/>
|
|
</Style>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="Resources/Styles/Colors.xaml" />
|
|
<ResourceDictionary Source="Resources/Styles/Styles.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
</ResourceDictionary>
|
|
</Application.Resources>
|
|
</Application>
|