1 write to ID
System.ComponentModel.TypeConverter (1)
System\ComponentModel\Design\CommandID.cs (1)
22ID = commandID;
22 references to ID
Microsoft.VisualStudio.LanguageServices (1)
Diagnostics\VisualStudioDiagnosticAnalyzerService.cs (1)
139if (command.CommandID.ID == RunCodeAnalysisForSelectedProjectCommandId &&
System.ComponentModel.TypeConverter (4)
System\ComponentModel\Design\CommandID.cs (4)
35return obj is CommandID cid && cid.Guid.Equals(Guid) && cid.ID == ID; 38public override int GetHashCode() => Guid.GetHashCode() << 2 | ID; 49public override string ToString() => $"{Guid} : {ID}";
System.Windows.Forms.Design (13)
System\ComponentModel\Design\MenuCommandService.cs (4)
317return FindCommand(commandID.Guid, commandID.ID); 337if (command.CommandID!.ID == id) 348int currentID = StandardCommands.VerbFirst.ID; 353if (cid.ID == id)
System\Windows\Forms\Design\Behavior\DesignerActionKeyboardBehavior.cs (1)
53if (_daUISvc is not null && commandId.Guid == s_vSStandardCommandSet97 && commandId.ID == 1124)
System\Windows\Forms\Design\DataGridViewColumnDesigner.cs (8)
299if ((commandId.ID == StandardCommands.Copy.ID) && (commandId.Guid == StandardCommands.Copy.Guid)) 309if ((commandId.ID == StandardCommands.Paste.ID) && (commandId.Guid == StandardCommands.Paste.Guid)) 319if ((commandId.ID == StandardCommands.Delete.ID) && (commandId.Guid == StandardCommands.Delete.Guid)) 329if ((commandId.ID == StandardCommands.Cut.ID) && (commandId.Guid == StandardCommands.Cut.Guid))
System.Windows.Forms.Tests (4)
System\Windows\Forms\PropertyGridCommandsTests.cs (4)
16PropertyGridCommands.Reset.ID.Should().Be(0x3000); 19PropertyGridCommands.Description.ID.Should().Be(0x3001); 22PropertyGridCommands.Hide.ID.Should().Be(0x3002); 25PropertyGridCommands.Commands.ID.Should().Be(0x3010);