0
我的問題是我想使用WPF擴展器對象來託管一些winforms控件。我要使用的位置在我的應用程序的設置窗體中。但是,我找不到的是向它添加多個控件。在帶有多個控件的Winforms中使用WPF擴展器
經過大量尋找解決我的問題,我剛剛發現這個簡單的代碼,只有一個控件添加到WPF擴展對象(我需要一個以上的控制添加):
private void Form1_Load(object sender, EventArgs e)
{
System.Windows.Controls.Expander expander = new System.Windows.Controls.Expander();
expander.Header = "Sample";
WPFHost = new ElementHost();
WPFHost.Dock = DockStyle.Fill;
WindowsFormsHost host = new WindowsFormsHost();
host.Child = new DateTimePicker();
expander.Content = host;
WPFHost.Child = expander;
this.Controls.Add(WPFHost);
}
在此代碼擴展器只託管一個控件。
我應該如何定製它來託管多個控件? 請幫助
非常感謝。 @Alexey – 2014-10-02 05:20:44