Code:
/ FX-1434 / FX-1434 / 1.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
- MarkupCompiler.cs
- NetNamedPipeBindingCollectionElement.cs
- DataTemplateKey.cs
- PeerService.cs
- SqlConnection.cs
- BamlVersionHeader.cs
- codemethodreferenceexpression.cs
- DBDataPermissionAttribute.cs
- SQlBooleanStorage.cs
- IPPacketInformation.cs
- StylusPointProperty.cs
- WebEvents.cs
- SQLInt32.cs
- KnownTypesProvider.cs
- XmlHelper.cs
- BoolLiteral.cs
- HostingEnvironment.cs
- MergablePropertyAttribute.cs
- TextTreeRootNode.cs
- XPathDocument.cs
- WsdlBuildProvider.cs
- SynchronizedMessageSource.cs
- ZipIOExtraFieldZip64Element.cs
- UIAgentMonitorHandle.cs
- ExpandoObject.cs
- ClientOptions.cs
- SurrogateEncoder.cs
- BitmapScalingModeValidation.cs
- UncommonField.cs
- SiteMapHierarchicalDataSourceView.cs
- CommandHelper.cs
- LambdaCompiler.Logical.cs
- recordstate.cs
- XmlQuerySequence.cs
- LogicalExpr.cs
- DescendentsWalker.cs
- RuntimeConfig.cs
- UserControl.cs
- ListChangedEventArgs.cs
- HijriCalendar.cs
- WebHttpEndpointElement.cs
- TransformConverter.cs
- DataServiceProcessingPipeline.cs
- StylusPointPropertyUnit.cs
- ExclusiveNamedPipeTransportManager.cs
- MatrixTransform3D.cs
- CodeSnippetCompileUnit.cs
- Message.cs
- ProbeMatchesMessage11.cs
- BooleanConverter.cs
- APCustomTypeDescriptor.cs
- SpellCheck.cs
- ItemsControlAutomationPeer.cs
- EmptyStringExpandableObjectConverter.cs
- ExpandableObjectConverter.cs
- StoreItemCollection.cs
- WinEventQueueItem.cs
- DrawingAttributesDefaultValueFactory.cs
- BitArray.cs
- SingleConverter.cs
- ValueProviderWrapper.cs
- ThrowHelper.cs
- Lease.cs
- DefaultMemberAttribute.cs
- WebPartDisplayModeCollection.cs
- IntegerFacetDescriptionElement.cs
- AsymmetricKeyExchangeDeformatter.cs
- GeneratedCodeAttribute.cs
- CreateDataSourceDialog.cs
- DESCryptoServiceProvider.cs
- dbenumerator.cs
- loginstatus.cs
- DatePickerTextBox.cs
- MetabaseServerConfig.cs
- SwitchElementsCollection.cs
- TimeSpanConverter.cs
- ClonableStack.cs
- WindowsToolbarItemAsMenuItem.cs
- LabelLiteral.cs
- LambdaCompiler.Generated.cs
- Keywords.cs
- ConnectionConsumerAttribute.cs
- AssemblyBuilder.cs
- CompositeKey.cs
- XamlReaderHelper.cs
- KeyValuePair.cs
- OdbcPermission.cs
- ForceCopyBuildProvider.cs
- JournalEntryStack.cs
- EncodingNLS.cs
- MetadataArtifactLoaderCompositeFile.cs
- Reference.cs
- InvalidCastException.cs
- ReadWriteObjectLock.cs
- AuthStoreRoleProvider.cs
- CellIdBoolean.cs
- DataGridViewComboBoxColumnDesigner.cs
- DeferredElementTreeState.cs
- DynamicMethod.cs
- CornerRadiusConverter.cs