Cleanup of the AboutForm, changed the Style to a "FixedToolWindow", I find this more professional. Changed the AnimatingForm to have a flag, EnableAnimation, which is false by default and makes it possible to make the Form the base form of all GreenshotForm forms. Renamed the conf -> coreConfiguration, as this is already in the base class. Also added some comments.

git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2367 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
RKrom 2012-12-07 16:31:20 +00:00
commit 57e4a8dd73
9 changed files with 89 additions and 33 deletions

View file

@ -29,8 +29,6 @@ namespace Greenshot.Forms {
/// Description of PrintOptionsDialog.
/// </summary>
public partial class PrintOptionsDialog : BaseForm {
private static CoreConfiguration conf = IniConfig.GetIniSection<CoreConfiguration>();
public PrintOptionsDialog() {
//
// The InitializeComponent() call is required for Windows Forms designer support.
@ -43,7 +41,7 @@ namespace Greenshot.Forms {
void Button_okClick(object sender, EventArgs e) {
// update config
conf.OutputPrintPromptOptions = !this.checkbox_dontaskagain.Checked;
coreConfiguration.OutputPrintPromptOptions = !this.checkbox_dontaskagain.Checked;
IniConfig.Save();
DialogResult = DialogResult.OK;
}