Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Automation / Peers / ToggleButtonAutomationPeer.cs / 1305600 / ToggleButtonAutomationPeer.cs
using System; using System.Runtime.InteropServices; using System.Security; using System.Text; using System.Windows; using System.Windows.Automation.Provider; using System.Windows.Controls; using System.Windows.Controls.Primitives; using System.Windows.Interop; using System.Windows.Media; using MS.Internal; using MS.Win32; namespace System.Windows.Automation.Peers { /// public class ToggleButtonAutomationPeer : ButtonBaseAutomationPeer, IToggleProvider { /// public ToggleButtonAutomationPeer(ToggleButton owner): base(owner) {} /// override protected string GetClassNameCore() { return "Button"; } /// override protected AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.Button; } /// override public object GetPattern(PatternInterface patternInterface) { if (patternInterface == PatternInterface.Toggle) { return this; } else { return base.GetPattern(patternInterface); } } void IToggleProvider.Toggle() { if(!IsEnabled()) throw new ElementNotEnabledException(); ToggleButton owner = (ToggleButton)Owner; owner.OnToggle(); } ToggleState IToggleProvider.ToggleState { get { ToggleButton owner = (ToggleButton)Owner; return ConvertToToggleState(owner.IsChecked); } } // [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] internal virtual void RaiseToggleStatePropertyChangedEvent(bool? oldValue, bool? newValue) { if (oldValue != newValue) { RaisePropertyChangedEvent(TogglePatternIdentifiers.ToggleStateProperty, ConvertToToggleState(oldValue), ConvertToToggleState(newValue)); } } private static ToggleState ConvertToToggleState(bool? value) { switch (value) { case (true): return ToggleState.On; case (false): return ToggleState.Off; default: return ToggleState.Indeterminate; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WindowsFormsHostAutomationPeer.cs
- UserPersonalizationStateInfo.cs
- WhitespaceRuleLookup.cs
- SqlTypesSchemaImporter.cs
- Literal.cs
- BinaryFormatterWriter.cs
- XomlDesignerLoader.cs
- Executor.cs
- D3DImage.cs
- EmptyCollection.cs
- _AuthenticationState.cs
- DataGridViewRowPrePaintEventArgs.cs
- TimeSpan.cs
- TableParagraph.cs
- VBIdentifierDesigner.xaml.cs
- CustomAttributeBuilder.cs
- Int32CollectionConverter.cs
- InvariantComparer.cs
- WorkflowRuntimeService.cs
- XmlDigitalSignatureProcessor.cs
- EventProvider.cs
- SiteMapHierarchicalDataSourceView.cs
- BitmapSourceSafeMILHandle.cs
- UnsafeNativeMethods.cs
- StringSource.cs
- ContextStaticAttribute.cs
- TabControl.cs
- NetCodeGroup.cs
- StaticExtensionConverter.cs
- WebPartHeaderCloseVerb.cs
- MutexSecurity.cs
- ScriptResourceMapping.cs
- DynamicRenderer.cs
- DataGridItemCollection.cs
- ActiveXContainer.cs
- _SecureChannel.cs
- AttachedPropertyBrowsableAttribute.cs
- RTLAwareMessageBox.cs
- DeploymentSectionCache.cs
- XmlSerializerFactory.cs
- OdbcEnvironment.cs
- LoginName.cs
- GetRecipientRequest.cs
- SoapSchemaMember.cs
- ReflectionTypeLoadException.cs
- RuleElement.cs
- CompositionAdorner.cs
- GridViewPageEventArgs.cs
- ComNativeDescriptor.cs
- DataColumnMappingCollection.cs
- SerializerDescriptor.cs
- ErrorLog.cs
- Baml2006Reader.cs
- DataListItemEventArgs.cs
- SpellerStatusTable.cs
- ToolStripLocationCancelEventArgs.cs
- StringBuilder.cs
- PointAnimationUsingPath.cs
- AmbientEnvironment.cs
- TdsParameterSetter.cs
- MarshalByRefObject.cs
- Trace.cs
- WarningException.cs
- DateTimeValueSerializer.cs
- Point3D.cs
- Pair.cs
- ReflectEventDescriptor.cs
- ReflectPropertyDescriptor.cs
- SHA384Managed.cs
- HMACMD5.cs
- WebBrowserPermission.cs
- LinkLabel.cs
- DoubleAnimationUsingPath.cs
- GroupItemAutomationPeer.cs
- QueryStringParameter.cs
- SafeArrayRankMismatchException.cs
- CodeBlockBuilder.cs
- SoapParser.cs
- HMAC.cs
- DataServiceQueryOfT.cs
- _NegoState.cs
- BamlCollectionHolder.cs
- ScalarOps.cs
- SQLMoney.cs
- Exceptions.cs
- SqlNodeAnnotations.cs
- ThrowHelper.cs
- HtmlMeta.cs
- UInt32.cs
- Int32Animation.cs
- ProviderCommandInfoUtils.cs
- RolePrincipal.cs
- TextLineResult.cs
- AnnotationResourceChangedEventArgs.cs
- TreeBuilderXamlTranslator.cs
- ContextStack.cs
- DesignerEditorPartChrome.cs
- SettingsSection.cs
- HelpInfo.cs
- EnvironmentPermission.cs