Beispiel #1
0
        public Category(ManWindow target,DataModel dataModel)
        {
            _target = target;
            _DataModel = dataModel;

            InitializeComponent();
        }
Beispiel #2
0
        public BaseInfo(ManWindow target, DataModel dataModel)
        {
            _target = target;
            _DataModel = dataModel;

            InitializeComponent();
        }
Beispiel #3
0
        public Opinions(ManWindow target)
        {
            InitializeComponent();

            _target = target;
        }
Beispiel #4
0
 public bool Start()
 {
     if (_ManWindow == null)
     {
         _ManWindow = new ManWindow();
     }
     _ManWindow.Start();
     return true;
 }
Beispiel #5
0
        public Question(ManWindow target)
        {
            InitializeComponent();

            _target = target;
        }
Beispiel #6
0
        private void ShowTalk()
        {
            if (_UserModel.Solution == null)
            {
                MessageBox.Show(this, "请先选择一个会话方案!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
                return;
            }

            if (_ManTarget == null)
            {
                _ManTarget = new ManWindow(this, _UserModel.DataModel);
            }
            _ManTarget.Start();
        }