嗨,我需要能夠在UserControl中使用我的主窗口中的列表,我需要能夠在各種用戶控件中編輯和讀取它。WPF-我如何使用我聲明並在UserControl中填充我的MainWindow的列表?
主窗口:
public partial class MainWindow : Window
{
public List<Termin> termine = new List<Termin>();
public MainWindow()
{
InitializeComponent();
}
}
用戶控件:
public partial class KalenderAnsicht : UserControl
{
public KalenderAnsicht()
{
InitializeComponent();
}
private void SomeMethod()
{
//i need to be able to use the list here
}
}
將列表作爲參數傳遞給方法。 – Kevin