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
|
||||
{
|
||||
partial class W03_Extensions
|
||||
partial class Extensions
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
|
@ -22,8 +22,8 @@ using System.Text.RegularExpressions;
|
|||
|
||||
namespace Examples.WinForms
|
||||
{
|
||||
[Example("Extensions", ExampleCategory.WinForms, 3)]
|
||||
public partial class W03_Extensions : Form
|
||||
[Example("Extensions", ExampleCategory.Test)]
|
||||
public partial class Extensions : Form
|
||||
{
|
||||
#region Fields
|
||||
|
||||
|
@ -34,7 +34,7 @@ namespace Examples.WinForms
|
|||
|
||||
#region Constructors
|
||||
|
||||
public W03_Extensions()
|
||||
public Extensions()
|
||||
{
|
||||
this.Font = SystemFonts.MessageBoxFont;
|
||||
InitializeComponent();
|
||||
|
@ -139,7 +139,7 @@ namespace Examples.WinForms
|
|||
[STAThread]
|
||||
public static void Main()
|
||||
{
|
||||
using (W03_Extensions example = new W03_Extensions())
|
||||
using (Extensions example = new Extensions())
|
||||
{
|
||||
Utilities.SetWindowTitle(example);
|
||||
example.ShowDialog();
|
Loading…
Reference in a new issue