Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
using System;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace PCKapatma
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private **** timer1_Tick(object sender, EventArgs e)
{
label1.Text = DateTime.Now.ToLongTimeString(); // Güncel saati yazdırma işlemi
if (label7.Text == DateTime.Now.ToLongTimeString()) // ayarlanan Saat ile güncel saat denk olduğunda
{
System.Diagnostics.Process.Start("shutdown", "-f -s"); // Sistemi Kapat
}
}
private **** Form1_Load(object sender, EventArgs e)
{
timer1.Enabled = true; // Form yüklendiğinde güncel saati başlat
label1.Text = DateTime.Now.ToLongTimeString(); // Yazdır
for (int i = 0; i