EditIcons() public method

public EditIcons ( ) : void
return void
コード例 #1
0
ファイル: Project.cs プロジェクト: noah1510/dotdevelop
/*		public bool CanCopySelection {
 *                      get { return Selection != null ? Selection.CanCopy : false; }
 *              }
 *
 *              public bool CanCutSelection {
 *                      get { return Selection != null ? Selection.CanCut : false; }
 *              }
 *
 *              public bool CanPasteToSelection {
 *                      get { return Selection != null ? Selection.CanPaste : false; }
 *              }
 *
 *              public void CopySelection ()
 *              {
 *                      if (Selection != null)
 *                              backend.ClipboardCopySelection ();
 *              }
 *
 *              public void CutSelection ()
 *              {
 *                      if (Selection != null)
 *                              backend.ClipboardCutSelection ();
 *              }
 *
 *              public void PasteToSelection ()
 *              {
 *                      if (Selection != null)
 *                              backend.ClipboardPaste ();
 *              }
 *
 *              public void DeleteSelection ()
 *              {
 *                      backend.DeleteSelection ();
 *              }
 */

        public void EditIcons()
        {
            ProjectBackend.EditIcons();
        }