Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CommonUI / System / Drawing / Design / PropertyValueUIItem.cs / 1 / 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. // Copyright (c) Microsoft Corporation. All rights reserved.Resets the UI item. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- OracleCommand.cs
- UnsafeNativeMethods.cs
- UserControlParser.cs
- MultiSelectRootGridEntry.cs
- IndentedWriter.cs
- ProtocolsConfiguration.cs
- ReferencedAssemblyResolver.cs
- sqlpipe.cs
- PngBitmapEncoder.cs
- BindingNavigator.cs
- CodeNamespaceImport.cs
- IssuerInformation.cs
- HtmlEmptyTagControlBuilder.cs
- TimeSpanParse.cs
- DataSourceCache.cs
- TransactionScope.cs
- serverconfig.cs
- HttpListenerContext.cs
- SetIterators.cs
- DbDataSourceEnumerator.cs
- IgnoreFileBuildProvider.cs
- Cursors.cs
- CompilerError.cs
- StaticExtensionConverter.cs
- DemultiplexingClientMessageFormatter.cs
- TimeStampChecker.cs
- ArraySegment.cs
- SQLInt16.cs
- XmlEnumAttribute.cs
- XmlNodeChangedEventArgs.cs
- DirectoryNotFoundException.cs
- DownloadProgressEventArgs.cs
- Environment.cs
- GZipUtils.cs
- DropTarget.cs
- ContentType.cs
- UseAttributeSetsAction.cs
- DataSourceCache.cs
- SamlAssertionKeyIdentifierClause.cs
- PropertyTab.cs
- Image.cs
- MimeWriter.cs
- DynamicPropertyHolder.cs
- DefaultTextStoreTextComposition.cs
- ProcessHostMapPath.cs
- EndSelectCardRequest.cs
- PromptBuilder.cs
- WebBrowserHelper.cs
- StateBag.cs
- IgnorePropertiesAttribute.cs
- VScrollProperties.cs
- BrowsableAttribute.cs
- ToolboxDataAttribute.cs
- CodeSubDirectoriesCollection.cs
- AssemblyAssociatedContentFileAttribute.cs
- ParagraphResult.cs
- BasicBrowserDialog.cs
- FormCollection.cs
- TextTreeTextNode.cs
- Helper.cs
- SequenceDesigner.cs
- CompModSwitches.cs
- NameNode.cs
- IDictionary.cs
- GeneralTransform.cs
- CollectionBuilder.cs
- PageAsyncTaskManager.cs
- TransformerTypeCollection.cs
- DataViewManagerListItemTypeDescriptor.cs
- CompilerError.cs
- XmlNavigatorStack.cs
- SqlReferenceCollection.cs
- CodeDefaultValueExpression.cs
- Renderer.cs
- ToolStripManager.cs
- ServiceBehaviorElement.cs
- DBCommand.cs
- AnimationLayer.cs
- TemplateBindingExtensionConverter.cs
- SharedDp.cs
- PermissionRequestEvidence.cs
- DesignerActionService.cs
- HierarchicalDataBoundControlAdapter.cs
- LinkClickEvent.cs
- ExtenderHelpers.cs
- HttpConfigurationSystem.cs
- QueueProcessor.cs
- Events.cs
- FileSystemInfo.cs
- BinaryReader.cs
- _AutoWebProxyScriptHelper.cs
- CodeDOMUtility.cs
- DirectoryObjectSecurity.cs
- XmlArrayItemAttributes.cs
- HandlerFactoryCache.cs
- ISAPIApplicationHost.cs
- Substitution.cs
- TreeNodeBindingCollection.cs
- PartitionerQueryOperator.cs
- CompilerResults.cs