public void ClearCanvas() { // Metoda wywoływana podczas rozpoczęcia egzaminu - czyści wszystko w canvas // moze być uzywana do tworzenia nowego pliku CanvLines.Clear(); CanvObj.Clear(); Clipboard.Clear(); _rubbers.MyHideRubbers(); UndoRedo.Clear();//wyczyszczenie historii ctrl z/y Invalidate(); }
public void New() { if (detail != null) { detail.Clear(); } selection.Clear(); undoRedo.Clear(); activeFeature = null; detail = new Detail(); var sk = new SketchFeature(); sk.shouldHoverWhenInactive = true; new PointEntity(sk.GetSketch()); detail.AddFeature(sk); sk = new SketchFeature(); detail.AddFeature(sk); UpdateFeatures(); ActivateFeature(sk); }
public static void Clear() { undoRedo.Clear(); }