从用户控件中访问MainWindow中的用户控件名称

时间:2015-11-26 07:36:05

标签: c# wpf xaml

我似乎无法从该用户控件中访问我在x:Name中的用户控件上设置的MainWindow.xaml属性。

this.Name属性为空!可能,这不是我正在寻找的属性(Why can't I use the Name attribute on UserControl in the same assembly?)。

我尝试在InitializeComponent();构造函数中的标准UserControl1()之后的虚拟行上放置一个调试停止,并挖掘各个基类中的属性,但是没有找到任何东西这与x:Name相似。

我的MainWindow.xaml看起来像这样:

  <Window x:Class="UserControlName.MainWindow"
          xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
          xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
          xmlns:xw="clr-namespace:UserControlName"

          Title="MainWindow" Height="350" Width="525">
      <Grid>
          <xw:UserControl1 x:Name="sup" />
      </Grid>
  </Window>

这是我的UserControl1.xaml:

<UserControl x:Class="UserControlName.UserControl1"
             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="300" d:DesignWidth="300">
    <Grid>
        <Label x:Name="sup" Content="Label" HorizontalAlignment="Left" Margin="134,146,0,0" VerticalAlignment="Top"/>

    </Grid>
</UserControl>

UserControl1.cs中的代码:

    public UserControl1()
    {
        InitializeComponent();
        this.sup.Content = "label: " + this.Name;
    }

标签应设置为&#34; label:sup&#34;,但this.name为空,因此它只是标签。

1 个答案:

答案 0 :(得分:2)

如果向用户控件添加按钮,则在调用构造函数后应用x:Name属性

<StackPanel>
    <Label x:Name="sup" Content="Label" HorizontalAlignment="Left" Margin="134,146,0,0" VerticalAlignment="Top"/>

    <Button Height="25" Width="100" Click="ButtonBase_OnClick"></Button>
</StackPanel>

并且

private void ButtonBase_OnClick(object sender, RoutedEventArgs e)
{
    this.sup.Content = "label: " + this.Name;
}

这应该使用主窗口中提供的名称更新标签。

要在没有交互的情况下更新此内容,请将其添加到usercontrol定义

Loaded="UserControl1_OnLoaded"

在codebehind中

private void UserControl1_OnLoaded(object sender, RoutedEventArgs e)
{
    this.sup.Content = "label: " + this.Name;
}