e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
92 lines
3.5 KiB
C#
92 lines
3.5 KiB
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="DesignerVerb.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
/*
|
|
*/
|
|
namespace System.ComponentModel.Design {
|
|
using Microsoft.Win32;
|
|
using System;
|
|
using System.ComponentModel;
|
|
using System.Diagnostics;
|
|
using System.Security.Permissions;
|
|
using System.Text.RegularExpressions;
|
|
|
|
/// <devdoc>
|
|
/// <para> Represents a verb that can be executed by a component's designer.</para>
|
|
/// </devdoc>
|
|
[HostProtection(SharedState = true)]
|
|
[System.Runtime.InteropServices.ComVisible(true)]
|
|
[System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
|
|
[System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
|
|
public class DesignerVerb : MenuCommand {
|
|
|
|
/// <devdoc>
|
|
/// <para>
|
|
/// Initializes a new instance of the <see cref='System.ComponentModel.Design.DesignerVerb'/> class.
|
|
/// </para>
|
|
/// </devdoc>
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public DesignerVerb(string text, EventHandler handler) : base(handler, StandardCommands.VerbFirst) {
|
|
// NOTICE!!! When you changed the regex here, please change it in Designer\[....]\System\[....]\Design\TableLayoutPanelDesigner.cs
|
|
// method "TrimText", too.
|
|
Properties["Text"] = text == null ? null : Regex.Replace(text, @"\(\&.\)", ""); // VSWHIDBEY 485835
|
|
}
|
|
|
|
/// <devdoc>
|
|
/// <para>
|
|
/// Initializes a new instance of the <see cref='System.ComponentModel.Design.DesignerVerb'/>
|
|
/// class.
|
|
/// </para>
|
|
/// </devdoc>
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public DesignerVerb(string text, EventHandler handler, CommandID startCommandID) : base(handler, startCommandID) {
|
|
Properties["Text"] = text == null ? null : Regex.Replace(text, @"\(\&.\)", "");// VSWHIDBEY 485835
|
|
}
|
|
|
|
/// <devdoc>
|
|
/// Gets or sets the description of the menu item for the verb.
|
|
/// </devdoc>
|
|
public string Description {
|
|
get {
|
|
object result = Properties["Description"];
|
|
if (result == null) {
|
|
return String.Empty;
|
|
}
|
|
return (string)result;
|
|
}
|
|
set {
|
|
Properties["Description"] = value;
|
|
}
|
|
}
|
|
|
|
/// <devdoc>
|
|
/// <para>
|
|
/// Gets or sets the text to show on the menu item for the verb.
|
|
/// </para>
|
|
/// </devdoc>
|
|
public string Text {
|
|
get {
|
|
object result = Properties["Text"];
|
|
if (result == null) {
|
|
return String.Empty;
|
|
}
|
|
return (string)result;
|
|
}
|
|
}
|
|
|
|
|
|
/// <devdoc>
|
|
/// <para>
|
|
/// Overrides object's ToString().
|
|
/// </para>
|
|
/// </devdoc>
|
|
public override string ToString() {
|
|
return Text + " : " + base.ToString();
|
|
}
|
|
}
|
|
}
|
|
|