コード例 #1
0
        public void ShowClickCommandUpdate(ClickCommand command)
        {
            CommandCreate commandCreateWindow = new CommandCreate(command);

            commandCreateWindow.Show();
        }
コード例 #2
0
        public void ShowSaveCommandUpdate(SaveCommand command)
        {
            CommandCreate commandCreateWindow = new CommandCreate(command);

            commandCreateWindow.Show();
        }
コード例 #3
0
        public void ShowCommandCreate(CommandCreator creator)
        {
            CommandCreate commandCreateWindow = new CommandCreate(creator);

            commandCreateWindow.Show();
        }