KalkulatorISP-31rrrrr/source/repos/Сидоров Ярослав Исп 33/Form1.cs
2025-11-11 14:18:33 +04:00

44 lines
983 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics.Eventing.Reader;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Сидороврослав_Исп_33
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
TbPassword.UseSystemPasswordChar = true;
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
if (checkBox1.Checked)
{
TbPassword.UseSystemPasswordChar = false;
}
else
{
TbPassword.UseSystemPasswordChar = true;
}
}
}
}