Welcome to mirror list, hosted at ThFree Co, Russian Federation.

System.Windows.SystemParameters.cs « PresentationFramework « FPF « Editor « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f24e07ba96f52802b060d295717bad050529e42d (plain)
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
namespace System.Windows
{
	public abstract class SystemParameters  : System.Object
	{










		public static System.Boolean HighContrast { get { return false; } }
		public static System.Boolean IsMenuDropRightAligned { get {  throw new System.NotImplementedException(); } }
		public static System.Boolean MenuDropAlignment { get {  throw new System.NotImplementedException(); } }
		public static System.Double MinimumHorizontalDragDistance { get { return 5; } }
		public static System.Double MinimumVerticalDragDistance { get { return 5; } }
		public static System.Double PrimaryScreenHeight { get {  throw new System.NotImplementedException(); } }
		public static System.Double PrimaryScreenWidth { get {  throw new System.NotImplementedException(); } }
		public static System.Int32 WheelScrollLines { get {  throw new System.NotImplementedException(); } }
		public static System.Windows.Rect WorkArea { get {  throw new System.NotImplementedException(); } }
	}
}