public MatchInfoEdit(bool isEdit, C_Global.Betweenness btwnValue)
        {
            InitializeComponent();

            _editType = isEdit;     //是否为设计模式

            _btwnValue = btwnValue;
        }
        public MatchInfoEdit(bool isEdit, string serverName, C_Global.Betweenness btwnValue)
        {
            InitializeComponent();

            _editType = isEdit;     //是否为设计模式

            _serverName = serverName;
            _btwnValue  = btwnValue;
        }