۰۲
بهمن
۹۶
- ۰ نظر
- ۰۲ بهمن ۹۶ ، ۱۷:۲۰
private void Form1_Load(object sender, EventArgs e)و یا از propertis فرم خاصیت FormBorderStyle را برابر None قرار بدین که فرم به شکل زیر در میاد :
{
this.FormBorderStyle = FormBorderStyle.None;
}
private const int WM_NCHITTEST = 0x84;
private const int HTCLIENT = 0x1;
private const int HTCAPTION = 0x2;
protected override void WndProc(ref Message message)
{
base.WndProc(ref message);
if (message.Msg == WM_NCHITTEST && (int)message.Result == HTCLIENT)
message.Result = (IntPtr)HTCAPTION;
}
using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int a, b, z =0;
a = int.Parse(Console.ReadLine());
b = int.Parse(Console.ReadLine());
Console.WriteLine();
for (int i = a + 1; i < b; i++)
{
Console.WriteLine(i);
}
Console.ReadKey();
}
}
}
موفق باشید