private void textToolStripMenuItem_Click(object sender, EventArgs e)
        {
            var text = _sym.CreateTextGraphics();

            AddGraphicsItem(text);
            _sym.AddGraphics(text);
            this.OnResourceChanged();
            new TextDialog(this, _sym, text).ShowDialog();
        }
Example #2
0
 private void SetActiveGraphicElement(IGraphicBase g)
 {
     _sym.ClearGraphics();
     _sym.AddGraphics(g);
     OnResourceChanged();
 }