我有一個Window1.xaml主窗口;並在某些事件發生後,我顯示一個UserControl EditFile.xaml。關閉當前UserControl
後面的代碼是:
public static int whichSelected = -1;
private void button1_Click(object sender, RoutedEventArgs e)
{
//searchEditPanel.Children.Clear();
whichSelected = listViewFiles.SelectedIndex;
searchEditPanel.Children.Add(_EditFileControle); //this is Grid
}
而現在,我怎麼能收從其內容中打開/添加的用戶控件通過點擊取消按鈕或類似的東西?
是的 - 工作,但從父母(窗口1)運行。我必須從我的孩子(EditFile.xaml.cs文件)關閉UserControl通過點擊它一些取消按鈕。 – BlueMan 2010-06-01 11:46:49