mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
140 lines
8.9 KiB
XML
140 lines
8.9 KiB
XML
<Styles xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:attached="clr-namespace:Artemis.UI.Shared.AttachedProperties"
|
|
xmlns:controls="clr-namespace:FluentAvalonia.UI.Controls;assembly=FluentAvalonia">
|
|
<Design.PreviewWith>
|
|
<Border Padding="20">
|
|
<StackPanel Spacing="20">
|
|
|
|
|
|
<!-- Add Controls for Previewer Here -->
|
|
<TextBox Text="99999999"
|
|
attached:TextBoxAssist.PrefixText="%"
|
|
attached:TextBoxAssist.SuffixText="%">
|
|
</TextBox>
|
|
<controls:NumberBox Value="99999999"
|
|
attached:NumberBoxAssist.PrefixText="%"
|
|
attached:NumberBoxAssist.SuffixText="%" />
|
|
|
|
<TextBox Classes="condensed"
|
|
Text="9999999"
|
|
attached:TextBoxAssist.PrefixText="%"
|
|
attached:TextBoxAssist.SuffixText="%" />
|
|
<controls:NumberBox Classes="condensed"
|
|
Value="9999999"
|
|
attached:NumberBoxAssist.PrefixText="%"
|
|
attached:NumberBoxAssist.SuffixText="%" />
|
|
</StackPanel>
|
|
|
|
</Border>
|
|
</Design.PreviewWith>
|
|
|
|
<!-- Add Styles Here -->
|
|
<Style Selector="TextBox">
|
|
<Setter Property="Template">
|
|
<ControlTemplate>
|
|
<DataValidationErrors>
|
|
<Panel>
|
|
<Border Name="PART_BorderElement"
|
|
Background="{TemplateBinding Background}"
|
|
BorderBrush="{TemplateBinding BorderBrush}"
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
|
CornerRadius="{TemplateBinding CornerRadius}"
|
|
MinWidth="{TemplateBinding MinWidth}"
|
|
MinHeight="{TemplateBinding MinHeight}">
|
|
</Border>
|
|
|
|
<Border Margin="{TemplateBinding BorderThickness}">
|
|
<Grid ColumnDefinitions="Auto,*,Auto" >
|
|
<ContentPresenter Grid.Column="0"
|
|
Grid.ColumnSpan="1"
|
|
Content="{TemplateBinding InnerLeftContent}"/>
|
|
<Grid x:Name="PART_InnerGrid"
|
|
Grid.Column="1"
|
|
RowDefinitions="Auto,Auto"
|
|
ColumnDefinitions="Auto,*,Auto"
|
|
Cursor="IBeam"
|
|
Margin="{TemplateBinding Padding}">
|
|
<TextBlock Grid.Row="0"
|
|
Grid.ColumnSpan="3"
|
|
Name="PART_FloatingWatermark"
|
|
Foreground="{DynamicResource SystemAccentColor}"
|
|
FontSize="{TemplateBinding FontSize}"
|
|
IsVisible="False"
|
|
Text="{TemplateBinding Watermark}" />
|
|
|
|
<TextBlock Grid.Row="1"
|
|
Grid.Column="0"
|
|
Name="PART_Prefix"
|
|
Text="{TemplateBinding attached:TextBoxAssist.PrefixText}"
|
|
IsVisible="{TemplateBinding attached:TextBoxAssist.PrefixText, Converter={x:Static StringConverters.IsNotNullOrEmpty}}"
|
|
IsHitTestVisible="False"
|
|
DockPanel.Dock="Left" />
|
|
|
|
<ScrollViewer Grid.Row="1"
|
|
Grid.Column="1"
|
|
HorizontalScrollBarVisibility="{TemplateBinding (ScrollViewer.HorizontalScrollBarVisibility)}"
|
|
VerticalScrollBarVisibility="{TemplateBinding (ScrollViewer.VerticalScrollBarVisibility)}"
|
|
IsScrollChainingEnabled="{TemplateBinding (ScrollViewer.IsScrollChainingEnabled)}"
|
|
AllowAutoHide="{TemplateBinding (ScrollViewer.AllowAutoHide)}">
|
|
<Panel>
|
|
<TextBlock Name="PART_Watermark"
|
|
Foreground="{DynamicResource TextControlPlaceholderForeground}"
|
|
Text="{TemplateBinding Watermark}"
|
|
TextAlignment="{TemplateBinding TextAlignment}"
|
|
TextWrapping="{TemplateBinding TextWrapping}"
|
|
IsVisible="{TemplateBinding Text, Converter={x:Static StringConverters.IsNullOrEmpty}}"
|
|
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
|
|
VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
|
|
<TextPresenter Name="PART_TextPresenter"
|
|
Text="{TemplateBinding Text, Mode=TwoWay}"
|
|
CaretIndex="{TemplateBinding CaretIndex}"
|
|
SelectionStart="{TemplateBinding SelectionStart}"
|
|
SelectionEnd="{TemplateBinding SelectionEnd}"
|
|
TextAlignment="{TemplateBinding TextAlignment}"
|
|
TextWrapping="{TemplateBinding TextWrapping}"
|
|
LineHeight="{TemplateBinding LineHeight}"
|
|
PasswordChar="{TemplateBinding PasswordChar}"
|
|
RevealPassword="{TemplateBinding RevealPassword}"
|
|
SelectionBrush="{TemplateBinding SelectionBrush}"
|
|
SelectionForegroundBrush="{TemplateBinding SelectionForegroundBrush}"
|
|
CaretBrush="{TemplateBinding CaretBrush}"
|
|
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
|
|
VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
|
|
</Panel>
|
|
</ScrollViewer>
|
|
|
|
<TextBlock Grid.Row="1"
|
|
Grid.Column="2"
|
|
Name="PART_Suffix"
|
|
Text="{TemplateBinding attached:TextBoxAssist.SuffixText}"
|
|
IsVisible="{TemplateBinding attached:TextBoxAssist.SuffixText, Converter={x:Static StringConverters.IsNotNullOrEmpty}}"
|
|
IsHitTestVisible="False"
|
|
HorizontalAlignment="Right" />
|
|
</Grid>
|
|
<ContentPresenter Grid.Column="2" Content="{TemplateBinding InnerRightContent}" />
|
|
</Grid>
|
|
</Border>
|
|
</Panel>
|
|
</DataValidationErrors>
|
|
</ControlTemplate>
|
|
</Setter>
|
|
</Style>
|
|
|
|
<Style Selector="TextBox /template/ TextBlock#PART_Prefix">
|
|
<Setter Property="Foreground" Value="{DynamicResource TextControlForegroundDisabled}"></Setter>
|
|
<Setter Property="Margin" Value="-4 0 4 0"></Setter>
|
|
</Style>
|
|
<Style Selector="TextBox /template/ TextBlock#PART_Suffix">
|
|
<Setter Property="Foreground" Value="{DynamicResource TextControlForegroundDisabled}"></Setter>
|
|
<Setter Property="Margin" Value="4 0 0 0"></Setter>
|
|
</Style>
|
|
|
|
<Style Selector="TextBox.condensed /template/ TextBlock#PART_Prefix">
|
|
<Setter Property="Margin" Value="0 0 4 0"></Setter>
|
|
</Style>
|
|
<Style Selector="TextBox.condensed /template/ TextBlock#PART_Suffix">
|
|
<Setter Property="Margin" Value="4 0 0 0"></Setter>
|
|
</Style>
|
|
|
|
</Styles> |