0

在我的用户控件ViewUser中,组框标题和文本块不显示用户 ID?

主窗口:

private void btnGeneral_Click(object sender, RoutedEventArgs e)
{

    ViewUser myusercontrol = new ViewUser();
    String id = (String)((Button)sender).Tag;
    myusercontrol.UserID = id;
    PanelMainContent.Children.Add(myusercontrol);

}
 private void button1_Click(object sender, RoutedEventArgs e)
 {
         string uriUsers = "http://localhost:8000/Service/User";
            XDocument xDoc = XDocument.Load(uriUsers);
            var sortedXdoc = xDoc.Descendants("User")
                           .OrderByDescending(x => Convert.ToDateTime(x.Element("TimeAdded").Value));
            foreach (var node in xDoc.Descendants("User"))
            {

                Button btnFindStudent = new Button();
                btnUser.Click += this.btnGeneral_Click;
                btnUser.Tag = String.Format(node.Element("UserID").Value);
                //also tryed btnUser.Tag = node.Element("UserID").Value;

用户控制:

public partial class ViewUser : UserControl
{
    public ViewUser()
    {
        InitializeComponent();
    }
    private string _user;

    public string UserID
    {
        get { return _userID; }
        set { _userID = value; }
    }
    protected override void OnInitialized(EventArgs e)
    {
        base.OnInitialized(e);
        groupBox1.Header = UserID;
        textBlock1.Text = UserID;
    }
}

}

4

2 回答 2

1

Kirsty,您应该在每次UserID 属性更改时更新 GroupBox 和 TextBlock :

public string UserID 
{ 
    get { return _userID; } 
    set
    {
        _userID = value;
        groupBox1.Header = _userID; 
        textBlock1.Text = _userID; 
    } 
} 

目前,您在 OnInitialized 中仅更新一次 GroupBox 和 TextBlock。但是 OnInitialized 仅在 ViewUser 控件初始化后调用一次,并且不再调用。

这就是 n8wrl 回答第二部分的意思。

于 2012-04-19T19:30:11.553 回答
-1

在设置 UserID 之前,您正在设置 groupBox1.Header 和 textBlock1.Text 。两种选择:

覆盖 OnPreRender 并将它们设置在那里。

或者

直接从您的属性中设置它们:

public string UserID
{
    get { return textBlock1.Text; }
    set
    {
        textBlock1.Text = value;
        groupBox1.Header = value;
    }
}
于 2012-04-19T18:44:49.647 回答