2012-08-21 17:00:40 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Windows.Forms;
|
2012-09-08 08:40:36 +00:00
|
|
|
|
using System.Drawing;
|
2012-08-21 17:00:40 +00:00
|
|
|
|
|
|
|
|
|
namespace AnxSampleBrowser
|
|
|
|
|
{
|
|
|
|
|
static class Program
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Der Haupteinstiegspunkt für die Anwendung.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[STAThread]
|
|
|
|
|
static void Main()
|
|
|
|
|
{
|
|
|
|
|
Application.EnableVisualStyles();
|
|
|
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
2015-02-21 14:53:11 +00:00
|
|
|
|
|
|
|
|
|
var window = new AnxSampleBrowser();
|
|
|
|
|
if (!window.IsDisposed)
|
|
|
|
|
Application.Run(window);
|
2012-08-21 17:00:40 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2012-09-08 08:40:36 +00:00
|
|
|
|
|
|
|
|
|
static class Style
|
|
|
|
|
{
|
|
|
|
|
public static System.Drawing.Color BG { get { return System.Drawing.Color.FromArgb(44, 44, 44); } }
|
|
|
|
|
public static System.Drawing.Color FG { get { return System.Drawing.Color.FromArgb(64, 64, 64); } }
|
|
|
|
|
public static System.Drawing.Color Text { get { return System.Drawing.Color.FromArgb(255, 255, 255); } }
|
|
|
|
|
public static Font Font16 { get { return new System.Drawing.Font("Segoe", 16F); } }
|
|
|
|
|
public static Font Font12 { get { return new System.Drawing.Font("Segoe",12F); } }
|
|
|
|
|
}
|
2012-08-21 17:00:40 +00:00
|
|
|
|
}
|