Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Controls / MenuScrollingVisibilityConverter.cs / 1305600 / MenuScrollingVisibilityConverter.cs
//----------------------------------------------------------------------------
//
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
//
// Description: Used to show or hide arrow buttons in scrolling menus.
//
//---------------------------------------------------------------------------
using System;
using System.Globalization;
using System.Windows;
using System.Windows.Automation.Provider;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Media;
using MS.Internal;
namespace System.Windows.Controls
{
///
/// Data binding converter to handle the visibility of repeat buttons in scrolling menus.
///
public sealed class MenuScrollingVisibilityConverter : IMultiValueConverter
{
///
/// Convert a value. Called when moving a value from source to target.
///
/// values as produced by source binding
/// target type
/// converter parameter
/// culture information
///
/// Converted value.
///
/// System.Windows.DependencyProperty.UnsetValue may be returned to indicate that
/// the converter produced no value and that the fallback (if available)
/// or default value should be used instead.
///
/// Binding.DoNothing may be returned to indicate that the binding
/// should not transfer the value or use the fallback or default value.
///
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
{
//
// Parameter Validation
//
Type doubleType = typeof(double);
if (parameter == null ||
values == null ||
values.Length != 4 ||
values[0] == null ||
values[1] == null ||
values[2] == null ||
values[3] == null ||
!typeof(Visibility).IsAssignableFrom(values[0].GetType()) ||
!doubleType.IsAssignableFrom(values[1].GetType()) ||
!doubleType.IsAssignableFrom(values[2].GetType()) ||
!doubleType.IsAssignableFrom(values[3].GetType()) )
{
return DependencyProperty.UnsetValue;
}
Type paramType = parameter.GetType();
if (!(doubleType.IsAssignableFrom(paramType) || typeof(string).IsAssignableFrom(paramType)))
{
return DependencyProperty.UnsetValue;
}
//
// Conversion
//
// If the scroll bar should be visible, then so should our buttons
Visibility computedVerticalScrollBarVisibility = (Visibility)values[0];
if (computedVerticalScrollBarVisibility == Visibility.Visible)
{
double target;
if (parameter is string)
{
target = Double.Parse(((string)parameter), NumberFormatInfo.InvariantInfo);
}
else
{
target = (double)parameter;
}
double verticalOffset = (double)values[1];
double extentHeight = (double)values[2];
double viewportHeight = (double)values[3];
if (extentHeight != viewportHeight) // Avoid divide by 0
{
// Calculate the percent so that we can see if we are near the edge of the range
double percent = Math.Min(100.0, Math.Max(0.0, (verticalOffset * 100.0 / (extentHeight - viewportHeight))));
if (DoubleUtil.AreClose(percent, target))
{
// We are at the end of the range, so no need for this button to be shown
return Visibility.Collapsed;
}
}
return Visibility.Visible;
}
return Visibility.Collapsed;
}
///
/// Not Supported
///
/// value, as produced by target
/// target types
/// converter parameter
/// culture information
/// Nothing
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
{
return new object[] { Binding.DoNothing };
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//----------------------------------------------------------------------------
//
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
//
// Description: Used to show or hide arrow buttons in scrolling menus.
//
//---------------------------------------------------------------------------
using System;
using System.Globalization;
using System.Windows;
using System.Windows.Automation.Provider;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Media;
using MS.Internal;
namespace System.Windows.Controls
{
///
/// Data binding converter to handle the visibility of repeat buttons in scrolling menus.
///
public sealed class MenuScrollingVisibilityConverter : IMultiValueConverter
{
///
/// Convert a value. Called when moving a value from source to target.
///
/// values as produced by source binding
/// target type
/// converter parameter
/// culture information
///
/// Converted value.
///
/// System.Windows.DependencyProperty.UnsetValue may be returned to indicate that
/// the converter produced no value and that the fallback (if available)
/// or default value should be used instead.
///
/// Binding.DoNothing may be returned to indicate that the binding
/// should not transfer the value or use the fallback or default value.
///
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
{
//
// Parameter Validation
//
Type doubleType = typeof(double);
if (parameter == null ||
values == null ||
values.Length != 4 ||
values[0] == null ||
values[1] == null ||
values[2] == null ||
values[3] == null ||
!typeof(Visibility).IsAssignableFrom(values[0].GetType()) ||
!doubleType.IsAssignableFrom(values[1].GetType()) ||
!doubleType.IsAssignableFrom(values[2].GetType()) ||
!doubleType.IsAssignableFrom(values[3].GetType()) )
{
return DependencyProperty.UnsetValue;
}
Type paramType = parameter.GetType();
if (!(doubleType.IsAssignableFrom(paramType) || typeof(string).IsAssignableFrom(paramType)))
{
return DependencyProperty.UnsetValue;
}
//
// Conversion
//
// If the scroll bar should be visible, then so should our buttons
Visibility computedVerticalScrollBarVisibility = (Visibility)values[0];
if (computedVerticalScrollBarVisibility == Visibility.Visible)
{
double target;
if (parameter is string)
{
target = Double.Parse(((string)parameter), NumberFormatInfo.InvariantInfo);
}
else
{
target = (double)parameter;
}
double verticalOffset = (double)values[1];
double extentHeight = (double)values[2];
double viewportHeight = (double)values[3];
if (extentHeight != viewportHeight) // Avoid divide by 0
{
// Calculate the percent so that we can see if we are near the edge of the range
double percent = Math.Min(100.0, Math.Max(0.0, (verticalOffset * 100.0 / (extentHeight - viewportHeight))));
if (DoubleUtil.AreClose(percent, target))
{
// We are at the end of the range, so no need for this button to be shown
return Visibility.Collapsed;
}
}
return Visibility.Visible;
}
return Visibility.Collapsed;
}
///
/// Not Supported
///
/// value, as produced by target
/// target types
/// converter parameter
/// culture information
/// Nothing
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
{
return new object[] { Binding.DoNothing };
}
}
}
// 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
- WebBrowserSiteBase.cs
- _SSPIWrapper.cs
- Int64AnimationBase.cs
- WsdlWriter.cs
- HMAC.cs
- RichTextBoxAutomationPeer.cs
- CompressionTransform.cs
- Pair.cs
- ObjectDataSourceSelectingEventArgs.cs
- TcpClientChannel.cs
- HashCodeCombiner.cs
- ExecutionEngineException.cs
- ObjectHandle.cs
- DefaultSerializationProviderAttribute.cs
- Behavior.cs
- CommandDevice.cs
- PreDigestedSignedInfo.cs
- FileRegion.cs
- EntityDataSourceUtil.cs
- CollectionChangeEventArgs.cs
- StatusBarItemAutomationPeer.cs
- WindowsTooltip.cs
- ResolvePPIDRequest.cs
- MultiBindingExpression.cs
- NextPreviousPagerField.cs
- DBConnectionString.cs
- SerializerProvider.cs
- OleDbConnectionFactory.cs
- RadialGradientBrush.cs
- CodeTypeReferenceSerializer.cs
- BufferedGraphics.cs
- ComContractElementCollection.cs
- Serialization.cs
- RenderCapability.cs
- FunctionParameter.cs
- ContextQuery.cs
- ContractInstanceProvider.cs
- FrameworkContentElement.cs
- WebPartMenu.cs
- ModelServiceImpl.cs
- Util.cs
- ReliabilityContractAttribute.cs
- CodeTypeDeclaration.cs
- RegexGroup.cs
- XmlTextWriter.cs
- DataServiceHost.cs
- Timer.cs
- EmptyQuery.cs
- RoleManagerModule.cs
- LicenseException.cs
- CompareInfo.cs
- ExtendedPropertyCollection.cs
- AsymmetricKeyExchangeFormatter.cs
- DiscardableAttribute.cs
- Rijndael.cs
- SqlAggregateChecker.cs
- SchemaMapping.cs
- CachedFontFamily.cs
- SqlUtils.cs
- WeakReference.cs
- GridViewRow.cs
- AssemblyNameProxy.cs
- SweepDirectionValidation.cs
- PermissionSetEnumerator.cs
- GenericWebPart.cs
- UpdateProgress.cs
- ServiceTimeoutsBehavior.cs
- XmlValueConverter.cs
- XmlSchemaRedefine.cs
- StylusPointDescription.cs
- VerticalAlignConverter.cs
- IsolatedStorageFile.cs
- ListViewItemSelectionChangedEvent.cs
- PermissionSetTriple.cs
- WebDisplayNameAttribute.cs
- _Events.cs
- DateTimeConstantAttribute.cs
- SmiMetaDataProperty.cs
- DnsPermission.cs
- EdmSchemaError.cs
- Comparer.cs
- PropertyConverter.cs
- Stopwatch.cs
- SqlConnectionFactory.cs
- LoginView.cs
- XmlDomTextWriter.cs
- HttpFileCollectionBase.cs
- ImageAutomationPeer.cs
- DBParameter.cs
- RuntimeUtils.cs
- SoapAttributes.cs
- TextBlockAutomationPeer.cs
- mediapermission.cs
- XsltArgumentList.cs
- WrappedReader.cs
- ParseChildrenAsPropertiesAttribute.cs
- RemoteWebConfigurationHostStream.cs
- ObfuscationAttribute.cs
- AmbientProperties.cs
- ColumnMapTranslator.cs