如何将值从窗口传递到 WPF 中的用户控件控件、如何将、窗口、用户

2023-09-07 15:30:11 作者:纸飞机载走了童年

我想将一个值从 MainWindow 传递到我的 UserControl!我向我的 UserControl 传递了一个值,并且 UserControl 向我显示了 MessageBox 中的值,但它没有显示 TextBox 中的值.这是我的代码:

I want to pass a value from MainWindow into my UserControl! I passed a value to my UserControl and the UserControl showed me the value in a MessageBox, but it is not showing the value in a TextBox. Here is my code:

MainWindow(将值传递给 UserControl)

try
{
    GroupsItems abc = null;
    if (abc == null)
    {
        abc = new GroupsItems();
        abc.MyParent = this;
        abc.passedv(e.ToString(), this);

    }
}
catch (Exception ee)
{
    MessageBox.Show(ee.Message);
}

用户控制

public partial class GroupsItems : UserControl
{
    public MainWindow MyParent { get; set; }
    string idd = "";
    public GroupsItems()
    {
        InitializeComponent();
        data();
    }

    public void passedv(string id, MainWindow mp)
    {
        idd = id.ToString();
        MessageBox.Show(idd);
        data();
    }

    public void data()
    {
        if (idd!="")
        {
            MessageBox.Show(idd);
            texbox.Text = idd;
        }
    }
}

编辑(使用 BINDING 和 INotifyProperty )

.....

   public GroupsItems()
      {
            InitializeComponent();
      }

    public void passedv()
    {
        textbox1.Text = Text;
    }

}

public class Groupitm : INotifyPropertyChanged
{

    private string _text = "";

    public string Text
    {
        get { return _text; }
        set
        {
            if (value != _text)
            {
                _text = value;
                NotifyPropertyChanged();
            }
        }
    }



    public event PropertyChangedEventHandler PropertyChanged;

    protected void NotifyPropertyChanged(String propertyName = "")
    {
        if (PropertyChanged != null)
        {
            PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
        }
    }

推荐答案

这里的问题有参考.

当您在后面的代码中创建新对象时,将创建新对象,这与您在 xaml 代码中拥有的对象不同.所以你应该使用以下代码:

When you create new object in code behind, new object will be created and this is not the same object which you have in xaml code. So you should use following code:

<local:GroupsItems x:Name="myGroupsItems"/>

并且在后面的代码中您不必创建新对象.您应该使用在 XAML 中添加的对象:

and in code behind you don't have to create new object. You should use object that you added in XAML:

...
myGroupsItems.MyParent = this;
myGroupsItems.passedv(e.ToString(), this);
...

这里是示例解决方案(sampleproject).

Here is example solution (sampleproject).

 
精彩推荐
图片推荐