10 lines
556 B
C#
10 lines
556 B
C#
// Global aliases to resolve ambiguities between System.Windows.* and System.Drawing.*
|
|
global using Application = System.Windows.Application;
|
|
global using Brushes = System.Windows.Media.Brushes;
|
|
global using Color = System.Windows.Media.Color;
|
|
global using FlowDirection = System.Windows.FlowDirection;
|
|
global using FontFamily = System.Windows.Media.FontFamily;
|
|
global using Orientation = System.Windows.Controls.Orientation;
|
|
global using ProgressBar = System.Windows.Controls.ProgressBar;
|
|
global using Size = System.Windows.Size;
|