Changeset - a8c7548cacbb
[Not reviewed]
default
0 2 0
Jason Maltzen - 3 years ago 2021-09-09 23:58:43
jason@hiddenachievement.com
Add a secondary message to the EmbeddedWarningBox
2 files changed with 9 insertions and 0 deletions:
0 comments (0 inline, 0 general)
Views/EmbeddedWarningBox.axaml
Show inline comments
...
 
@@ -16,2 +16,3 @@
 
                            <TextBlock Name="PART_Message" Text="{TemplateBinding Message}"/>
 
                            <TextBlock Name="PART_Message2" Text="{TemplateBinding Message2}"/>
 
                            <ContentPresenter Content="{TemplateBinding Content}"/>
...
 
@@ -48,2 +49,7 @@
 
        
 
        <Style Selector="view|EmbeddedWarningBox /template/  TextBlock#PART_Message2">
 
          <Setter Property="FontSize" Value="12"/>
 
          <Setter Property="TextWrapping" Value="Wrap"/>
 
        </Style>
 

	
 
        <Style Selector="view|EmbeddedWarningBox Button">
Views/EmbeddedWarningBox.axaml.cs
Show inline comments
...
 
@@ -15,2 +15,5 @@ namespace DesertPaintCodex.Views
 
        public string Message { get => GetValue(MessageProperty); set => SetValue(MessageProperty, value); }
 
        public static readonly StyledProperty<string> Message2Property =
 
            AvaloniaProperty.Register<EmbeddedWarningBox, string>(nameof(Message2));
 
        public string Message2 { get => GetValue(Message2Property); set => SetValue(Message2Property, value); }
 
        
0 comments (0 inline, 0 general)