0

我的解决方案中有 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 的内容。

我该怎么做呢?

4

1 回答 1

2

我改变了答案。该站点对您进行两种方式都很有用:

http://sachabarber.net/?p=149

于 2009-12-23T08:52:07.127 回答