1e56f6e6d3
- Refactoring Projects in the solution
25 lines
471 B
C#
25 lines
471 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace CMS_Client.View
|
|
{
|
|
public partial class NcForm : Form
|
|
{
|
|
public NcForm()
|
|
{
|
|
InitializeComponent();
|
|
|
|
//Force to use on Screen 1
|
|
this.DesktopLocation = new Point(0, 0);
|
|
|
|
}
|
|
}
|
|
}
|