Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CommonUI / System / Drawing / Design / PropertyValueUIItem.cs / 1305376 / PropertyValueUIItem.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Drawing.Design { using System.Diagnostics; using Microsoft.Win32; using System.Collections; using System.Drawing; ////// /// [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] public class PropertyValueUIItem { ///Provides information about the property value UI including the invoke /// handler, tool tip, and the glyph icon to be displayed on the property /// browser. ////// /// The image to display for this. Must be 8x8 /// private Image itemImage; ////// /// The handler to fire if this item is double clicked. /// private PropertyValueUIItemInvokeHandler handler; ////// /// The tooltip for this item. /// private string tooltip; ////// /// public PropertyValueUIItem(Image uiItemImage, PropertyValueUIItemInvokeHandler handler, string tooltip){ this.itemImage = uiItemImage; this.handler = handler; if (itemImage == null) { throw new ArgumentNullException("uiItemImage"); } if (handler == null) { throw new ArgumentNullException("handler"); } this.tooltip = tooltip; } ///Initiailzes a new instance of the ///class. /// /// public virtual Image Image { get { return itemImage; } } ///Gets or sets /// the 8x8 pixel image that will be drawn on the properties window. ////// /// public virtual PropertyValueUIItemInvokeHandler InvokeHandler { get { return handler; } } ///Gets or sets the handler that will be raised when this item is double clicked. ////// /// public virtual string ToolTip { get { return tooltip; } } ///Gets or sets the /// tool tip to display for this item. ////// /// public virtual void Reset(){ } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Resets the UI item. ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Drawing.Design { using System.Diagnostics; using Microsoft.Win32; using System.Collections; using System.Drawing; ////// /// [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] public class PropertyValueUIItem { ///Provides information about the property value UI including the invoke /// handler, tool tip, and the glyph icon to be displayed on the property /// browser. ////// /// The image to display for this. Must be 8x8 /// private Image itemImage; ////// /// The handler to fire if this item is double clicked. /// private PropertyValueUIItemInvokeHandler handler; ////// /// The tooltip for this item. /// private string tooltip; ////// /// public PropertyValueUIItem(Image uiItemImage, PropertyValueUIItemInvokeHandler handler, string tooltip){ this.itemImage = uiItemImage; this.handler = handler; if (itemImage == null) { throw new ArgumentNullException("uiItemImage"); } if (handler == null) { throw new ArgumentNullException("handler"); } this.tooltip = tooltip; } ///Initiailzes a new instance of the ///class. /// /// public virtual Image Image { get { return itemImage; } } ///Gets or sets /// the 8x8 pixel image that will be drawn on the properties window. ////// /// public virtual PropertyValueUIItemInvokeHandler InvokeHandler { get { return handler; } } ///Gets or sets the handler that will be raised when this item is double clicked. ////// /// public virtual string ToolTip { get { return tooltip; } } ///Gets or sets the /// tool tip to display for this item. ////// /// public virtual void Reset(){ } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Resets the UI item. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TextTreeNode.cs
- CharacterMetrics.cs
- FormViewRow.cs
- DbConnectionOptions.cs
- InvokePattern.cs
- HwndSourceKeyboardInputSite.cs
- WmfPlaceableFileHeader.cs
- ProviderIncompatibleException.cs
- wgx_sdk_version.cs
- SqlTypeSystemProvider.cs
- ChangePassword.cs
- WebPartManagerInternals.cs
- _IPv4Address.cs
- WindowsTreeView.cs
- NotifyCollectionChangedEventArgs.cs
- ExpressionBuilder.cs
- StateDesigner.TransitionInfo.cs
- NonSerializedAttribute.cs
- RootProfilePropertySettingsCollection.cs
- IISUnsafeMethods.cs
- HttpClientCertificate.cs
- filewebresponse.cs
- NavigationCommands.cs
- CryptoConfig.cs
- FormViewPagerRow.cs
- WorkflowView.cs
- TableLayoutPanelCellPosition.cs
- CodeAttributeArgument.cs
- HttpProfileGroupBase.cs
- ApplicationInfo.cs
- VBCodeProvider.cs
- EDesignUtil.cs
- EncryptedPackage.cs
- DataListCommandEventArgs.cs
- StringArrayConverter.cs
- BigInt.cs
- WeakKeyDictionary.cs
- TcpProcessProtocolHandler.cs
- X509CertificateTokenFactoryCredential.cs
- NetCodeGroup.cs
- PeerCollaborationPermission.cs
- PrintController.cs
- TaskFormBase.cs
- PublisherIdentityPermission.cs
- IISMapPath.cs
- MessageBox.cs
- ListBoxItemAutomationPeer.cs
- NumericUpDownAccelerationCollection.cs
- AmbientLight.cs
- FormViewPagerRow.cs
- WebPartConnectVerb.cs
- SemanticTag.cs
- SafeReadContext.cs
- BulletChrome.cs
- TemplatePartAttribute.cs
- MailWriter.cs
- CollectionViewSource.cs
- GZipDecoder.cs
- ResolveCriteriaCD1.cs
- ViewGenResults.cs
- ProfileGroupSettingsCollection.cs
- WebPartDeleteVerb.cs
- DataColumnPropertyDescriptor.cs
- ActivityXamlServices.cs
- FactoryRecord.cs
- DesignerResources.cs
- Activity.cs
- _SslState.cs
- BindingCollection.cs
- KeyInfo.cs
- AuthenticationModuleElementCollection.cs
- RootBrowserWindow.cs
- TriggerAction.cs
- AppSettingsSection.cs
- XmlSchemaChoice.cs
- ParserHooks.cs
- WCFBuildProvider.cs
- ColumnTypeConverter.cs
- Switch.cs
- ExpressionCopier.cs
- XmlSchemaAnnotated.cs
- Rss20ItemFormatter.cs
- Adorner.cs
- Speller.cs
- KeyConverter.cs
- PackWebRequest.cs
- TypedColumnHandler.cs
- CompiledRegexRunnerFactory.cs
- SQlBooleanStorage.cs
- DataGridToolTip.cs
- SqlCaseSimplifier.cs
- XPathNavigatorKeyComparer.cs
- AuthStoreRoleProvider.cs
- TextRangeEdit.cs
- DataRecordInternal.cs
- RestHandler.cs
- ToolBarButton.cs
- DataGridViewCellEventArgs.cs
- InvalidFilterCriteriaException.cs
- ReadOnlyCollectionBase.cs