/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/Microsoft.Management.UI.Internal/ManagementList/Common/ScalableImageSource.Generated.cs
228 строк
8 KB
Steve Lee
Update copyright notice to latest guidance (#12190)
24 мар 2020, 21:08
Не верифицирован
24 мар 2020, 21:08
b7cb335
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. #region StyleCop Suppression - generated code using System; using System.ComponentModel; using System.Windows; using System.Windows.Media; namespace Microsoft.Management.UI.Internal { /// <summary> /// Represents the source of an image that can render as a vector or as a bitmap. /// </summary> [Localizability(LocalizationCategory.None)] partial class ScalableImageSource { // // AccessibleName dependency property // /// <summary> /// Identifies the AccessibleName dependency property. /// </summary> public static readonly DependencyProperty AccessibleNameProperty = DependencyProperty.Register( "AccessibleName", typeof(string), typeof(ScalableImageSource), new PropertyMetadata( null, AccessibleNameProperty_PropertyChanged) ); /// <summary> /// Gets or sets the accessible name of the image. This is used by accessibility clients to describe the image, and must be localized. /// </summary> [Bindable(true)] [Category("Common Properties")] [Description("Gets or sets the accessible name of the image. This is used by accessibility clients to describe the image, and must be localized.")] [Localizability(LocalizationCategory.Text, Modifiability=Modifiability.Modifiable, Readability=Readability.Readable)] public string AccessibleName { get { return (string) GetValue(AccessibleNameProperty); } set { SetValue(AccessibleNameProperty,value); } } static private void AccessibleNameProperty_PropertyChanged(DependencyObject o, DependencyPropertyChangedEventArgs e) { ScalableImageSource obj = (ScalableImageSource) o; obj.OnAccessibleNameChanged( new PropertyChangedEventArgs<string>((string)e.OldValue, (string)e.NewValue) ); } /// <summary> /// Occurs when AccessibleName property changes. /// </summary> public event EventHandler<PropertyChangedEventArgs<string>> AccessibleNameChanged; /// <summary> /// Called when AccessibleName property changes. /// </summary> protected virtual void OnAccessibleNameChanged(PropertyChangedEventArgs<string> e) { OnAccessibleNameChangedImplementation(e); RaisePropertyChangedEvent(AccessibleNameChanged, e); } partial void OnAccessibleNameChangedImplementation(PropertyChangedEventArgs<string> e); // // Brush dependency property // /// <summary> /// Identifies the Brush dependency property. /// </summary> public static readonly DependencyProperty BrushProperty = DependencyProperty.Register( "Brush", typeof(Brush), typeof(ScalableImageSource), new PropertyMetadata( null, BrushProperty_PropertyChanged) ); /// <summary> /// Gets or sets the source used to render the image as a vector.If this is set, the Image property will be ignored. /// </summary> [Bindable(true)] [Category("Common Properties")] [Description("Gets or sets the source used to render the image as a vector.If this is set, the Image property will be ignored.")] [Localizability(LocalizationCategory.None)] public Brush Brush { get { return (Brush) GetValue(BrushProperty); } set { SetValue(BrushProperty,value); } } static private void BrushProperty_PropertyChanged(DependencyObject o, DependencyPropertyChangedEventArgs e) { ScalableImageSource obj = (ScalableImageSource) o; obj.OnBrushChanged( new PropertyChangedEventArgs<Brush>((Brush)e.OldValue, (Brush)e.NewValue) ); } /// <summary> /// Occurs when Brush property changes. /// </summary> public event EventHandler<PropertyChangedEventArgs<Brush>> BrushChanged; /// <summary> /// Called when Brush property changes. /// </summary> protected virtual void OnBrushChanged(PropertyChangedEventArgs<Brush> e) { OnBrushChangedImplementation(e); RaisePropertyChangedEvent(BrushChanged, e); } partial void OnBrushChangedImplementation(PropertyChangedEventArgs<Brush> e); // // Image dependency property // /// <summary> /// Identifies the Image dependency property. /// </summary> public static readonly DependencyProperty ImageProperty = DependencyProperty.Register( "Image", typeof(ImageSource), typeof(ScalableImageSource), new PropertyMetadata( null, ImageProperty_PropertyChanged) ); /// <summary> /// Gets or sets the source used to render the image as a bitmap. If the Brush property is set, this will be ignored. /// </summary> [Bindable(true)] [Category("Common Properties")] [Description("Gets or sets the source used to render the image as a bitmap. If the Brush property is set, this will be ignored.")] [Localizability(LocalizationCategory.None)] public ImageSource Image { get { return (ImageSource) GetValue(ImageProperty); } set { SetValue(ImageProperty,value); } } static private void ImageProperty_PropertyChanged(DependencyObject o, DependencyPropertyChangedEventArgs e) { ScalableImageSource obj = (ScalableImageSource) o; obj.OnImageChanged( new PropertyChangedEventArgs<ImageSource>((ImageSource)e.OldValue, (ImageSource)e.NewValue) ); } /// <summary> /// Occurs when Image property changes. /// </summary> public event EventHandler<PropertyChangedEventArgs<ImageSource>> ImageChanged; /// <summary> /// Called when Image property changes. /// </summary> protected virtual void OnImageChanged(PropertyChangedEventArgs<ImageSource> e) { OnImageChangedImplementation(e); RaisePropertyChangedEvent(ImageChanged, e); } partial void OnImageChangedImplementation(PropertyChangedEventArgs<ImageSource> e); // // Size dependency property // /// <summary> /// Identifies the Size dependency property. /// </summary> public static readonly DependencyProperty SizeProperty = DependencyProperty.Register( "Size", typeof(Size), typeof(ScalableImageSource), new PropertyMetadata( new Size(double.NaN, double.NaN), SizeProperty_PropertyChanged) ); /// <summary> /// Gets or sets the suggested size of the image. /// </summary> [Bindable(true)] [Category("Common Properties")] [Description("Gets or sets the suggested size of the image.")] [Localizability(LocalizationCategory.None)] public Size Size { get { return (Size) GetValue(SizeProperty); } set { SetValue(SizeProperty,value); } } static private void SizeProperty_PropertyChanged(DependencyObject o, DependencyPropertyChangedEventArgs e) { ScalableImageSource obj = (ScalableImageSource) o; obj.OnSizeChanged( new PropertyChangedEventArgs<Size>((Size)e.OldValue, (Size)e.NewValue) ); } /// <summary> /// Occurs when Size property changes. /// </summary> public event EventHandler<PropertyChangedEventArgs<Size>> SizeChanged; /// <summary> /// Called when Size property changes. /// </summary> protected virtual void OnSizeChanged(PropertyChangedEventArgs<Size> e) { OnSizeChangedImplementation(e); RaisePropertyChangedEvent(SizeChanged, e); } partial void OnSizeChangedImplementation(PropertyChangedEventArgs<Size> e); /// <summary> /// Called when a property changes. /// </summary> private void RaisePropertyChangedEvent<T>(EventHandler<PropertyChangedEventArgs<T>> eh, PropertyChangedEventArgs<T> e) { if (eh != null) { eh(this,e); } } } } #endregion