Example #1
0
        /// <summary>
        /// 用户管理窗口
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void UserControlOnClick(object sender, MouseButtonEventArgs e)
        {
            UserControlWindow userControlWindow = new UserControlWindow();

            userControlWindow.Topmost = true;
            userControlWindow.Show();
        }
Example #2
0
 public AddUserWindow(UserControlWindow userControlWindow)
 {
     InitializeComponent();
     this.userControlWindow = userControlWindow;
 }