Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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. //------------------------------------------------------------------------------ //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
- Sql8ConformanceChecker.cs
- ReachPageContentCollectionSerializer.cs
- ViewStateChangedEventArgs.cs
- MarshalDirectiveException.cs
- InternalBufferOverflowException.cs
- TextElementCollection.cs
- AutomationPropertyInfo.cs
- MatrixStack.cs
- DataGridViewRowCancelEventArgs.cs
- Vector3DCollection.cs
- BasicExpressionVisitor.cs
- SqlDuplicator.cs
- ToolBar.cs
- ResourceDescriptionAttribute.cs
- JpegBitmapDecoder.cs
- BindingMemberInfo.cs
- OleDbWrapper.cs
- Content.cs
- WinFormsUtils.cs
- ListItemCollection.cs
- XmlToDatasetMap.cs
- FloatMinMaxAggregationOperator.cs
- SiteMapHierarchicalDataSourceView.cs
- FigureParaClient.cs
- ObjectDataSourceMethodEventArgs.cs
- MetadataPropertyCollection.cs
- URL.cs
- MasterPageParser.cs
- MergePropertyDescriptor.cs
- PreProcessor.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- TypeSemantics.cs
- DisposableCollectionWrapper.cs
- XmlSerializableServices.cs
- LogEntrySerializationException.cs
- ZipFileInfoCollection.cs
- HitTestDrawingContextWalker.cs
- GenericQueueSurrogate.cs
- ObjectStateEntry.cs
- TypeUtil.cs
- TextCompositionEventArgs.cs
- DesignTimeVisibleAttribute.cs
- EngineSiteSapi.cs
- DesignRelation.cs
- SignatureGenerator.cs
- StrokeCollectionConverter.cs
- TraceXPathNavigator.cs
- StrongTypingException.cs
- Int32CollectionConverter.cs
- ProviderSettings.cs
- FtpWebResponse.cs
- Line.cs
- ConfigurationValues.cs
- Wildcard.cs
- TextViewBase.cs
- SplayTreeNode.cs
- UntypedNullExpression.cs
- MenuItemAutomationPeer.cs
- Assert.cs
- WindowsAuthenticationEventArgs.cs
- SoapElementAttribute.cs
- DateRangeEvent.cs
- UndirectedGraph.cs
- ReferenceEqualityComparer.cs
- UnsafeNativeMethodsTablet.cs
- TransformValueSerializer.cs
- TripleDES.cs
- _PooledStream.cs
- UInt32.cs
- ServiceChannelProxy.cs
- DiscoveryInnerClientAdhoc11.cs
- BezierSegment.cs
- DisplayMemberTemplateSelector.cs
- OpenTypeLayoutCache.cs
- PreviewPrintController.cs
- AccessViolationException.cs
- RelationshipSet.cs
- TrackingProvider.cs
- PageCodeDomTreeGenerator.cs
- UrlMappingsSection.cs
- WorkflowView.cs
- BindableTemplateBuilder.cs
- XPathSelfQuery.cs
- InternalRelationshipCollection.cs
- MenuBase.cs
- VirtualizedContainerService.cs
- TypeToken.cs
- DataGridViewCellFormattingEventArgs.cs
- ItemCollection.cs
- GeneralTransformGroup.cs
- OrderedDictionary.cs
- ChineseLunisolarCalendar.cs
- ServerValidateEventArgs.cs
- TabControlCancelEvent.cs
- TypeInfo.cs
- ElementUtil.cs
- SerializationHelper.cs
- Scheduler.cs
- Int32EqualityComparer.cs
- SpecialFolderEnumConverter.cs