我的解决方案中有 2 个项目。
-WindowsFormsApplication8
-WpfControlLibrary1
我正在使用 WPF Interoperability 中的 ElementHost 来托管 WpfControlLibrary1 中的 UserControl1。
_________________________
Form1 - [] x |
-------------------------
..........
| label1 | // label
..........
// elementHost1
// wpf control has one
// button and nothing else
____________
| |
| ClickMe1 |
|____________|
__________________________
现在,
<Canvas>
<Button Click="btnclick">hello</Button>
</Canvas>
private void btnclick(object sender, RoutedEventArgs e)
{
MessageBox.Show(); // this msgbox
}
我希望“this msgbox”显示 label1 的内容。
我该怎么做呢?