Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- WebBrowserEvent.cs
- RoutedEventConverter.cs
- HandlerFactoryWrapper.cs
- ScrollItemPatternIdentifiers.cs
- selecteditemcollection.cs
- EntityDataSourceContextCreatedEventArgs.cs
- ServiceOperationWrapper.cs
- DiscoveryReference.cs
- PtsCache.cs
- CqlParser.cs
- InternalsVisibleToAttribute.cs
- CreateUserWizardStep.cs
- FontFaceLayoutInfo.cs
- DeflateStreamAsyncResult.cs
- HwndHostAutomationPeer.cs
- SourceFileBuildProvider.cs
- EventLogEntry.cs
- LeaseManager.cs
- SamlAdvice.cs
- LowerCaseStringConverter.cs
- CommonRemoteMemoryBlock.cs
- NavigationWindowAutomationPeer.cs
- CodeExporter.cs
- CodeIdentifiers.cs
- CustomCategoryAttribute.cs
- SHA256.cs
- EffectiveValueEntry.cs
- MetadataCacheItem.cs
- DBAsyncResult.cs
- DataServiceOperationContext.cs
- x509store.cs
- OleServicesContext.cs
- RootDesignerSerializerAttribute.cs
- ContextDataSourceContextData.cs
- COM2ColorConverter.cs
- SmtpMail.cs
- BitmapEffectDrawingContent.cs
- HttpCapabilitiesSectionHandler.cs
- SessionParameter.cs
- NotifyIcon.cs
- DefaultObjectSerializer.cs
- WebResourceUtil.cs
- StopStoryboard.cs
- SoapRpcMethodAttribute.cs
- ArrayTypeMismatchException.cs
- MimeTypePropertyAttribute.cs
- ChtmlTextWriter.cs
- SqlRowUpdatingEvent.cs
- DataGridViewRowsRemovedEventArgs.cs
- SystemIPv6InterfaceProperties.cs
- SynchronizationFilter.cs
- UDPClient.cs
- PerfService.cs
- XmlSchemaObjectTable.cs
- WebPartEditorCancelVerb.cs
- RelationshipDetailsRow.cs
- DynamicDiscoSearcher.cs
- CachedTypeface.cs
- ResourceDefaultValueAttribute.cs
- SortQuery.cs
- DataGridViewTopRowAccessibleObject.cs
- BindingWorker.cs
- Compress.cs
- EntitySet.cs
- RegexEditorDialog.cs
- ColorPalette.cs
- StyleTypedPropertyAttribute.cs
- ScriptReferenceEventArgs.cs
- DataSourceHelper.cs
- ItemsControlAutomationPeer.cs
- VisualBrush.cs
- WindowsButton.cs
- XMLUtil.cs
- DecoderFallback.cs
- Codec.cs
- IteratorFilter.cs
- WpfWebRequestHelper.cs
- ConstructorBuilder.cs
- QilVisitor.cs
- UIElementHelper.cs
- BaseCodePageEncoding.cs
- DataControlFieldCollection.cs
- XmlTextWriter.cs
- MethodRental.cs
- DictionarySurrogate.cs
- ParserHooks.cs
- CopyNamespacesAction.cs
- SocketAddress.cs
- TagPrefixAttribute.cs
- AuthStoreRoleProvider.cs
- SymLanguageType.cs
- SoapSchemaMember.cs
- WorkflowServiceNamespace.cs
- ElementAction.cs
- SqlFunctionAttribute.cs
- SecurityTokenSpecification.cs
- DataGridViewRowHeaderCell.cs
- AssemblyAttributes.cs
- PageAsyncTask.cs
- HttpCapabilitiesEvaluator.cs