File size: 7,966 Bytes
8c763fb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#region StyleCop Suppression - generated code
using System;
using System.ComponentModel;
using System.Windows;
namespace Microsoft.Management.UI.Internal
{
/// <summary>
/// Provides attached properties for TextBlock control.
/// </summary>
[Localizability(LocalizationCategory.None)]
partial class TextBlockService
{
//
// IsTextTrimmed dependency property
//
/// <summary>
/// Identifies the IsTextTrimmed dependency property key.
/// </summary>
private static readonly DependencyPropertyKey IsTextTrimmedPropertyKey = DependencyProperty.RegisterAttachedReadOnly( "IsTextTrimmed", typeof(bool), typeof(TextBlockService), new PropertyMetadata( BooleanBoxes.FalseBox, IsTextTrimmedProperty_PropertyChanged) );
/// <summary>
/// Identifies the IsTextTrimmed dependency property.
/// </summary>
public static readonly DependencyProperty IsTextTrimmedProperty = IsTextTrimmedPropertyKey.DependencyProperty;
/// <summary>
/// Gets the value for IsTextTrimmedProperty that is attached to the element.
/// </summary>
/// <param name="element">The dependency object that the property is attached to.</param>
/// <returns>
/// The value of IsTextTrimmed that is attached to element.
/// </returns>
static public bool GetIsTextTrimmed(DependencyObject element)
{
return (bool) element.GetValue(IsTextTrimmedProperty);
}
/// <summary>
/// Sets the value for IsTextTrimmedProperty that is attached to the element.
/// </summary>
/// <param name="element">The dependency object that the property will be attached to.</param>
/// <param name="value">The new value.</param>
static private void SetIsTextTrimmed(DependencyObject element, bool value)
{
element.SetValue(IsTextTrimmedPropertyKey,BooleanBoxes.Box(value));
}
static private void IsTextTrimmedProperty_PropertyChanged(DependencyObject o, DependencyPropertyChangedEventArgs e)
{
IsTextTrimmedProperty_PropertyChangedImplementation(o, e);
}
static partial void IsTextTrimmedProperty_PropertyChangedImplementation(DependencyObject o, DependencyPropertyChangedEventArgs e);
//
// IsTextTrimmedExternally dependency property
//
/// <summary>
/// Identifies the IsTextTrimmedExternally dependency property.
/// </summary>
public static readonly DependencyProperty IsTextTrimmedExternallyProperty = DependencyProperty.RegisterAttached( "IsTextTrimmedExternally", typeof(bool), typeof(TextBlockService), new PropertyMetadata( BooleanBoxes.FalseBox, IsTextTrimmedExternallyProperty_PropertyChanged) );
/// <summary>
/// Gets a value indicating that the Text has been trimmed external to the element.
/// </summary>
/// <param name="element">The dependency object that the property is attached to.</param>
/// <returns>
/// The value of IsTextTrimmedExternally that is attached to element.
/// </returns>
static public bool GetIsTextTrimmedExternally(DependencyObject element)
{
return (bool) element.GetValue(IsTextTrimmedExternallyProperty);
}
/// <summary>
/// Sets a value indicating that the Text has been trimmed external to the element.
/// </summary>
/// <param name="element">The dependency object that the property will be attached to.</param>
/// <param name="value">The new value.</param>
static public void SetIsTextTrimmedExternally(DependencyObject element, bool value)
{
element.SetValue(IsTextTrimmedExternallyProperty,BooleanBoxes.Box(value));
}
static private void IsTextTrimmedExternallyProperty_PropertyChanged(DependencyObject o, DependencyPropertyChangedEventArgs e)
{
IsTextTrimmedExternallyProperty_PropertyChangedImplementation(o, e);
}
static partial void IsTextTrimmedExternallyProperty_PropertyChangedImplementation(DependencyObject o, DependencyPropertyChangedEventArgs e);
//
// IsTextTrimmedMonitoringEnabled dependency property
//
/// <summary>
/// Identifies the IsTextTrimmedMonitoringEnabled dependency property.
/// </summary>
public static readonly DependencyProperty IsTextTrimmedMonitoringEnabledProperty = DependencyProperty.RegisterAttached( "IsTextTrimmedMonitoringEnabled", typeof(bool), typeof(TextBlockService), new PropertyMetadata( BooleanBoxes.FalseBox, IsTextTrimmedMonitoringEnabledProperty_PropertyChanged) );
/// <summary>
/// Gets the value for IsTextTrimMonitoringEnabled that is attached to the element.
/// </summary>
/// <param name="element">The dependency object that the property is attached to.</param>
/// <returns>
/// The value of IsTextTrimmedMonitoringEnabled that is attached to element.
/// </returns>
static public bool GetIsTextTrimmedMonitoringEnabled(DependencyObject element)
{
return (bool) element.GetValue(IsTextTrimmedMonitoringEnabledProperty);
}
/// <summary>
/// Sets the value for IsTextTrimMonitoringEnabled that is attached to the element.
/// </summary>
/// <param name="element">The dependency object that the property will be attached to.</param>
/// <param name="value">The new value.</param>
static public void SetIsTextTrimmedMonitoringEnabled(DependencyObject element, bool value)
{
element.SetValue(IsTextTrimmedMonitoringEnabledProperty,BooleanBoxes.Box(value));
}
static private void IsTextTrimmedMonitoringEnabledProperty_PropertyChanged(DependencyObject o, DependencyPropertyChangedEventArgs e)
{
IsTextTrimmedMonitoringEnabledProperty_PropertyChangedImplementation(o, e);
}
static partial void IsTextTrimmedMonitoringEnabledProperty_PropertyChangedImplementation(DependencyObject o, DependencyPropertyChangedEventArgs e);
//
// UntrimmedText dependency property
//
/// <summary>
/// Identifies the UntrimmedText dependency property.
/// </summary>
public static readonly DependencyProperty UntrimmedTextProperty = DependencyProperty.RegisterAttached( "UntrimmedText", typeof(string), typeof(TextBlockService), new PropertyMetadata( string.Empty, UntrimmedTextProperty_PropertyChanged) );
/// <summary>
/// Gets the untrimmed text.
/// </summary>
/// <param name="element">The dependency object that the property is attached to.</param>
/// <returns>
/// The value of UntrimmedText that is attached to element.
/// </returns>
static public string GetUntrimmedText(DependencyObject element)
{
return (string) element.GetValue(UntrimmedTextProperty);
}
/// <summary>
/// Sets the untrimmed text.
/// </summary>
/// <param name="element">The dependency object that the property will be attached to.</param>
/// <param name="value">The new value.</param>
static public void SetUntrimmedText(DependencyObject element, string value)
{
element.SetValue(UntrimmedTextProperty,value);
}
static private void UntrimmedTextProperty_PropertyChanged(DependencyObject o, DependencyPropertyChangedEventArgs e)
{
UntrimmedTextProperty_PropertyChangedImplementation(o, e);
}
static partial void UntrimmedTextProperty_PropertyChangedImplementation(DependencyObject o, DependencyPropertyChangedEventArgs e);
}
}
#endregion
|