بدست آوردن قالب صحیح ساعت با استفاده از ثانیه ی دریافتی
کد:
public string getFormattedTimeFromSecond(double second)
{
TimeSpan t = TimeSpan.FromSeconds(second);
string formatedTime = string.Format("{0:D2}H:{1:D2}M:{2:D2}S",
t.Hours,
t.Minutes,
t.Seconds);
return formatedTime;
}
Shutdown، Restart و Logoff کردن کامپیوتر
کد:
using System;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
[DllImport("user32.dll")]
public static extern int ExitWindowsEx(int uFlags, int dwReason);
private void button1_Click(object sender, EventArgs e)
{
// Log Off
ExitWindowsEx(0, 0);
}
private void button2_Click(object sender, EventArgs e)
{
// Reboot
ExitWindowsEx(2, 0);
}
private void button3_Click(object sender, EventArgs e)
{
// Shutdown
ExitWindowsEx(1, 0);
}
}
}