简体   繁体   中英

How to override the text style in a custom user control?

  1. I have a user control that that consist of a. A textblock whose content is bound to UserLabel b. A textbox whose content is bound to UserValue .

  2. When I add this user control to the Main Window, I want to add a subscript in the UserLabel , but do not know how to do that.

  3. I want to do something like this (THE FOLLOWING CODE DOES NOT WORK. IT IS WHAT I WANT TO DO):

<Window 
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:local="clr-namespace:MyNamespace"
  Title="MyControl Sample" 
  Height="300" 
  Width="300">
  <StackPanel>
    <local:MyControl>
        <UserLabel.Text>
            Subscript<Run BaselineAlignment="Subscript" FontSize="12pt">This</Run> 
        <UserLabel.Text>
    <local:MyControl>
  </StackPanel>
</Window>
  1. How can I achieve something like that? 在此处输入图像描述

  2. Here is the XAML:

<UserControl x:Class="TEST.MyControl"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008"              
             mc:Ignorable="d" 
             d:DesignHeight="450" d:DesignWidth="800"
             x:Name="parent">
    <StackPanel Width="100" Orientation="Horizontal"                 
                DataContext="{Binding ElementName=parent}">
        
        <!-- User Label -->
        <TextBlock Width="200" Name="UserLabel"                                                        
                   Text="{Binding Path=UserLabel}" >            
        </TextBlock>
        
        <!-- User Input -->
        <TextBox Width="100" Name="MetricValue"                  
                 Text="{Binding Path=UserValue}"/>
        
    </StackPanel>
</UserControl>

  1. and here is the CODE BEHIND:
/// <summary>
    /// Interaction logic for MyControl.xaml
    /// </summary>
    public partial class MyControl: UserControl
    {
        public MyControl()
        {
            InitializeComponent();
        }

        #region User Label DP
        public static readonly DependencyProperty UserLabelProperty =
            DependencyProperty.Register("UserLabel",
                typeof(string),
                typeof(MyControl),
                new PropertyMetadata(""));
        public string UserLabel
        {
            get { return GetValue(UserLabelProperty) as String; }
            set { SetValue(UserLabelProperty, value); }
        }
        #endregion // User Label DP

        #region UserValue DP
        public static readonly DependencyProperty UserValueProperty =
            DependencyProperty.Register("UserValue",
                typeof(string),
                typeof(MyControl),
                new PropertyMetadata(""));
        public string UserValue
        {
            get { return GetValue(UserValueProperty) as String; }
            set { SetValue(UserValueProperty, value); }
        }
        #endregion // UserValue DP        
    }

Make UserLabel a TextBlock instead of a string that has no concept of Run elements:

#region User Label DP
public static readonly DependencyProperty UserLabelProperty =
    DependencyProperty.Register("UserLabel",
        typeof(TextBlock),
        typeof(MyControl));

public TextBlock UserLabel
{
    get { return GetValue(UserLabelProperty) as TextBlock; }
    set { SetValue(UserLabelProperty, value); }
}
#endregion // User Label DP

UserControl XAML:

<!-- User Label -->
<ContentControl Width="200" Content="{Binding UserLabel, ElementName=parent}" />

Window XAML:

<StackPanel>
    <local:MyControl>
        <local:MyControl.UserLabel>
            <TextBlock>
                <Run FontSize="12pt">Subscript</Run>
                <Run BaselineAlignment="Subscript" FontSize="12pt">This</Run>
            </TextBlock>
        </local:MyControl.UserLabel>
    </local:MyControl>
</StackPanel>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM