inital
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
<Style x:Key="Customizable.Editable.TextBox"
|
||||
TargetType="TextBox">
|
||||
<Setter Property="Padding"
|
||||
Value="11" />
|
||||
<Setter Property="Margin"
|
||||
Value="0 5" />
|
||||
<Setter Property="BorderThickness"
|
||||
Value="0" />
|
||||
<Setter Property="BorderBrush"
|
||||
Value="Transparent" />
|
||||
<Setter Property="Foreground"
|
||||
Value="{DynamicResource FontColor.Menu.Categories}" />
|
||||
<Setter Property="IsReadOnly"
|
||||
Value="True" />
|
||||
|
||||
<Style.Resources>
|
||||
<Style TargetType="Border">
|
||||
<Setter Property="CornerRadius"
|
||||
Value="7.5" />
|
||||
</Style>
|
||||
</Style.Resources>
|
||||
</Style>
|
||||
|
||||
<Style x:Key="Customizable.Editable.TextBox.Background"
|
||||
TargetType="TextBox"
|
||||
BasedOn="{StaticResource Customizable.Editable.TextBox}">
|
||||
<Setter Property="Background"
|
||||
Value="{DynamicResource BackgroundColor.DetailsPage.Widget.Title}" />
|
||||
</Style>
|
||||
|
||||
<Style x:Key="Customizable.Editable.TextBox.EditOnly"
|
||||
TargetType="TextBox"
|
||||
BasedOn="{StaticResource Customizable.Editable.TextBox.Background}">
|
||||
<Setter Property="BorderBrush"
|
||||
Value="{DynamicResource BackgroundColor.Menu.SubCategory.Hover}" />
|
||||
<Setter Property="BorderThickness"
|
||||
Value="1" />
|
||||
<Setter Property="Padding"
|
||||
Value="10" />
|
||||
<Setter Property="IsReadOnly"
|
||||
Value="False" />
|
||||
<Setter Property="AcceptsTab"
|
||||
Value="True" />
|
||||
<Setter Property="AcceptsReturn"
|
||||
Value="True" />
|
||||
</Style>
|
||||
|
||||
</ResourceDictionary>
|
||||
Reference in New Issue
Block a user