Moved to the Tests namespace.
This commit is contained in:
parent
ec45dfab24
commit
c14b41b3f4
3 changed files with 5 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
||||||
namespace Examples.WinForms
|
namespace Examples.WinForms
|
||||||
{
|
{
|
||||||
partial class W03_Extensions
|
partial class Extensions
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Required designer variable.
|
/// Required designer variable.
|
|
@ -22,8 +22,8 @@ using System.Text.RegularExpressions;
|
||||||
|
|
||||||
namespace Examples.WinForms
|
namespace Examples.WinForms
|
||||||
{
|
{
|
||||||
[Example("Extensions", ExampleCategory.WinForms, 3)]
|
[Example("Extensions", ExampleCategory.Test)]
|
||||||
public partial class W03_Extensions : Form
|
public partial class Extensions : Form
|
||||||
{
|
{
|
||||||
#region Fields
|
#region Fields
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ namespace Examples.WinForms
|
||||||
|
|
||||||
#region Constructors
|
#region Constructors
|
||||||
|
|
||||||
public W03_Extensions()
|
public Extensions()
|
||||||
{
|
{
|
||||||
this.Font = SystemFonts.MessageBoxFont;
|
this.Font = SystemFonts.MessageBoxFont;
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
@ -139,7 +139,7 @@ namespace Examples.WinForms
|
||||||
[STAThread]
|
[STAThread]
|
||||||
public static void Main()
|
public static void Main()
|
||||||
{
|
{
|
||||||
using (W03_Extensions example = new W03_Extensions())
|
using (Extensions example = new Extensions())
|
||||||
{
|
{
|
||||||
Utilities.SetWindowTitle(example);
|
Utilities.SetWindowTitle(example);
|
||||||
example.ShowDialog();
|
example.ShowDialog();
|
Loading…
Reference in a new issue