从 UserControl 调用主窗口
Call mainwindows from UserControl
我有一个 Window(mainwindows.xaml),其中有一个 label.Now,我创建了一个 UserControl(只是一个基本按钮)。在 Window_load
,我在 canvas(在主窗口中)中添加 UserControl 使用此 :
Dim con as new myUserControl
Canvas.Children.Add(con)
现在我想要的是,当我单击 UserControl 时,标签将被隐藏。我该怎么做??
我试过创建 WPF 自定义控件库 但不知道如何使用它 ??
我自己修好了....我猜那真的是 easy.In 用户控件,只是用了这个 :
Dim hm As MainWIndow = Window.GetWindow(Me)
hm.Lbl1.Visibility=Visibility.Hidden
我有一个 Window(mainwindows.xaml),其中有一个 label.Now,我创建了一个 UserControl(只是一个基本按钮)。在 Window_load
,我在 canvas(在主窗口中)中添加 UserControl 使用此 :
Dim con as new myUserControl
Canvas.Children.Add(con)
现在我想要的是,当我单击 UserControl 时,标签将被隐藏。我该怎么做??
我试过创建 WPF 自定义控件库 但不知道如何使用它 ??
我自己修好了....我猜那真的是 easy.In 用户控件,只是用了这个 :
Dim hm As MainWIndow = Window.GetWindow(Me)
hm.Lbl1.Visibility=Visibility.Hidden