Example #1
0
        public void ShowUpdateDetailWindow()
        {
            var window = new DetailUpdateWindow(
                methodArgs as NewNameArgs);

            if (window.ShowDialog() == true)
            {
                RaiseChangeEvent("Description");
                var         args = methodArgs as NewNameArgs;
                UpdateEvent e1   = new UpdateEvent();
                if (newNameEvent != null)
                {
                    newNameEvent(args, e1);
                }
                e1 = null;
            }
        }
Example #2
0
 public void ShowUpdateDetailWindow()
 {
     var window = new DetailUpdateWindow(
         methodArgs as UniqueIDArgs);
 }
Example #3
0
 public void ShowUpdateDetailWindow()
 {
     var window = new DetailUpdateWindow(
         methodArgs as FullnameNormalizeArgs);
 }