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

System.Windows.FontWeights.cs « PresentationCore « FPF « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dca1e0f530151808f507a4307a1b191ea72a4543 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace System.Windows
{
	public abstract class FontWeights  : System.Object
	{


		public static System.Windows.FontWeight Bold { get {  return new FontWeight(); } }
		public static System.Windows.FontWeight Normal { get {  return new FontWeight(); } }
		public static System.Windows.FontWeight Regular { get {  return new FontWeight(); } }

	}
}