initial commit
This commit is contained in:
@@ -0,0 +1,99 @@
|
||||
using System;
|
||||
using System.Windows.Forms;
|
||||
using Quasar.Server.Helper;
|
||||
|
||||
namespace Quasar.Server.Forms
|
||||
{
|
||||
public partial class FrmShowMessagebox : Form
|
||||
{
|
||||
private readonly int _selectedClients;
|
||||
|
||||
public string MsgBoxCaption { get; set; }
|
||||
public string MsgBoxText { get; set; }
|
||||
public string MsgBoxButton { get; set; }
|
||||
public string MsgBoxIcon { get; set; }
|
||||
public FrmShowMessagebox(int selected)
|
||||
{
|
||||
_selectedClients = selected;
|
||||
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void FrmShowMessagebox_Load(object sender, EventArgs e)
|
||||
{
|
||||
this.Text = WindowHelper.GetWindowTitle("Show Messagebox", _selectedClients);
|
||||
|
||||
cmbMsgButtons.Items.AddRange(new string[]
|
||||
{"AbortRetryIgnore", "OK", "OKCancel", "RetryCancel", "YesNo", "YesNoCancel"});
|
||||
cmbMsgButtons.SelectedIndex = 0;
|
||||
cmbMsgIcon.Items.AddRange(new string[]
|
||||
{"None", "Error", "Hand", "Question", "Exclamation", "Warning", "Information", "Asterisk"});
|
||||
cmbMsgIcon.SelectedIndex = 0;
|
||||
}
|
||||
|
||||
private void btnPreview_Click(object sender, EventArgs e)
|
||||
{
|
||||
MessageBox.Show(null, txtText.Text, txtCaption.Text,
|
||||
(MessageBoxButtons)
|
||||
Enum.Parse(typeof (MessageBoxButtons), GetMessageBoxButton(cmbMsgButtons.SelectedIndex)),
|
||||
(MessageBoxIcon) Enum.Parse(typeof (MessageBoxIcon), GetMessageBoxIcon(cmbMsgIcon.SelectedIndex)));
|
||||
}
|
||||
|
||||
private void btnSend_Click(object sender, EventArgs e)
|
||||
{
|
||||
MsgBoxCaption = txtCaption.Text;
|
||||
MsgBoxText = txtText.Text;
|
||||
MsgBoxButton = GetMessageBoxButton(cmbMsgButtons.SelectedIndex);
|
||||
MsgBoxIcon = GetMessageBoxIcon(cmbMsgIcon.SelectedIndex);
|
||||
|
||||
this.DialogResult = DialogResult.OK;
|
||||
this.Close();
|
||||
}
|
||||
|
||||
private string GetMessageBoxButton(int selectedIndex)
|
||||
{
|
||||
switch (selectedIndex)
|
||||
{
|
||||
case 0:
|
||||
return "AbortRetryIgnore";
|
||||
case 1:
|
||||
return "OK";
|
||||
case 2:
|
||||
return "OKCancel";
|
||||
case 3:
|
||||
return "RetryCancel";
|
||||
case 4:
|
||||
return "YesNo";
|
||||
case 5:
|
||||
return "YesNoCancel";
|
||||
default:
|
||||
return "OK";
|
||||
}
|
||||
}
|
||||
|
||||
private string GetMessageBoxIcon(int selectedIndex)
|
||||
{
|
||||
switch (selectedIndex)
|
||||
{
|
||||
case 0:
|
||||
return "None";
|
||||
case 1:
|
||||
return "Error";
|
||||
case 2:
|
||||
return "Hand";
|
||||
case 3:
|
||||
return "Question";
|
||||
case 4:
|
||||
return "Exclamation";
|
||||
case 5:
|
||||
return "Warning";
|
||||
case 6:
|
||||
return "Information";
|
||||
case 7:
|
||||
return "Asterisk";
|
||||
default:
|
||||
return "None";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user