Show Status.cs syntax highlighted
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace DemoClientApp
{
public partial class Status : Form
{
public Status(int X, int Y)
{
InitializeComponent();
this.Left = X;
this.Top = Y;
}
}
}
See more files for this project here