Added integrate with windows context menu settings

This commit is contained in:
Alexander 2018-12-17 13:20:23 +02:00
parent cb46285315
commit 82e3623799

View file

@ -307,5 +307,18 @@ public bool SendTo {
this["SendTo"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(PortableSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool MenuIntegrate {
get {
return ((bool)(this["MenuIntegrate"]));
}
set {
this["MenuIntegrate"] = value;
}
}
}
}