Ejemplo n.º 1
0
 private void SetPointUI()
 {
     SetPointTabVisibility(chkPoints.Checked);
     _vsr.PointStyle = (chkPoints.Checked) ? _pts : null;
     pointRuleGrid.Init(_parent.EditorService, _vsr, _vsr.PointStyle);
     if (!_init)
     {
         _parent.RaiseResourceChanged();
     }
 }
 private void chkDisplayAsText_CheckedChanged(object sender, EventArgs e)
 {
     if (_init)
     {
         return;
     }
     _pts.DisplayAsText = chkDisplayAsText.Checked;
     _parent.RaiseResourceChanged();
 }