Files
ErrorGenerator_CSharp/ErrorGenerator/Form1.cs
T
Christopher 6dd8d50aa0 Update
Parę nowych dodatków:
* Opóżnienie pojawienia
* Pokaż po wciśnięciu ikony na pasku powiadomień
2021-01-27 23:45:52 +01:00

101 lines
3.4 KiB
C#

using System;
using System.Windows.Forms;
using System.Drawing;
using System.Threading;
namespace ErrorGenerator
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void generate_Click(object sender, EventArgs e)
{
if (numericUpDown1.Value != 0)
{
Thread.Sleep(Convert.ToInt32(numericUpDown1.Value * 1000));
showMessage(title.Text, text.Text, buttons.SelectedIndex, type.SelectedIndex);
}
else
showMessage(title.Text, text.Text, buttons.SelectedIndex, type.SelectedIndex);
}
void showMessage(string title, string text, int buttons, int types)
{
var button = new MessageBoxButtons();
var type = new MessageBoxIcon();
#region Przyciski
if (buttons == 0)
button = MessageBoxButtons.AbortRetryIgnore;
else if (buttons == 1)
button = MessageBoxButtons.OK;
else if (buttons == 2)
button = MessageBoxButtons.OKCancel;
else if (buttons == 3)
button = MessageBoxButtons.RetryCancel;
else if (buttons == 4)
button = MessageBoxButtons.YesNo;
else if (buttons == 5)
button = MessageBoxButtons.YesNoCancel;
else
button = MessageBoxButtons.OK;
#endregion
#region Ikona
if (types == 0)
type = MessageBoxIcon.Error;
else if (types == 1)
type = MessageBoxIcon.Information;
else if (types == 2)
type = MessageBoxIcon.Warning;
else if (types == 3)
type = MessageBoxIcon.Question;
else
type = MessageBoxIcon.Information;
#endregion
MessageBox.Show(text, title, button, type);
}
private void linkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
linkLabel1.LinkVisited = true;
System.Diagnostics.Process.Start("https://github.com/KrzysiekSiemv");
}
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
Properties.Settings settings = new Properties.Settings();
if(settings.Ikona != "")
notifyIcon1.Icon = new Icon(settings.Ikona);
notifyIcon1.Text = settings.TytulIkony;
if (checkBox1.Checked)
notifyIcon1.Visible = true;
else
notifyIcon1.Visible = false;
}
private void notifyIcon1_DoubleClick(object sender, EventArgs e)
{
if(Properties.Settings.Default.Klikniecie == 1)
showMessage(title.Text, text.Text, buttons.SelectedIndex, type.SelectedIndex);
}
private void notifyIcon1_Click(object sender, EventArgs e)
{
if (Properties.Settings.Default.Klikniecie == 0)
showMessage(title.Text, text.Text, buttons.SelectedIndex, type.SelectedIndex);
}
private void button1_Click(object sender, EventArgs e)
{
UstawieniaNotify ustawienia = new UstawieniaNotify();
ustawienia.Show();
}
}
}