Replace editable DataGridTextColumn with TextBox (#552)
This commit is contained in:
parent
ec9356b36e
commit
807725f6ff
7 changed files with 54 additions and 34 deletions
|
|
@ -79,7 +79,7 @@ namespace LibationWinForms
|
|||
|
||||
if (!selectedTab.Visible || !settingTabMessages.ContainsKey(selectedTab.Text)) return;
|
||||
|
||||
MessageBox.Show(selectedTab, settingTabMessages[selectedTab.Text], selectedTab.Text + " Tab", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
MessageBox.Show(selectedTab, settingTabMessages[selectedTab.Text], selectedTab.Text + " Tab", MessageBoxButtons.OK);
|
||||
|
||||
settingTabMessages.Remove(selectedTab.Text);
|
||||
}
|
||||
|
|
@ -104,7 +104,7 @@ namespace LibationWinForms
|
|||
|
||||
if (count < 1)
|
||||
{
|
||||
MainForm.Invoke(() => MessageBox.Show(MainForm, "Add an Audible account, then sync your library through the \"Import\" menu", "Add an Audible Account"));
|
||||
MainForm.Invoke(() => MessageBox.Show(MainForm, "Add an Audible account, then sync your library through the \"Import\" menu", "Add an Audible Account", MessageBoxButtons.OK, MessageBoxIcon.Information));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue