55 lines
1.1 KiB
C#
55 lines
1.1 KiB
C#
|
|
using System;
|
|||
|
|
using System.CodeDom.Compiler;
|
|||
|
|
using System.Configuration;
|
|||
|
|
using System.Diagnostics;
|
|||
|
|
using System.Drawing;
|
|||
|
|
using System.Runtime.CompilerServices;
|
|||
|
|
|
|||
|
|
namespace KGdev.BI3D.Revit.Addin.MainWindow.External.Browser.Properties
|
|||
|
|
{
|
|||
|
|
[CompilerGenerated]
|
|||
|
|
[GeneratedCode("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.6.0.0")]
|
|||
|
|
internal sealed partial class Settings : ApplicationSettingsBase
|
|||
|
|
{
|
|||
|
|
public static Settings Default
|
|||
|
|
{
|
|||
|
|
get
|
|||
|
|
{
|
|||
|
|
return Settings.defaultInstance;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
[UserScopedSetting]
|
|||
|
|
[DebuggerNonUserCode]
|
|||
|
|
[DefaultSettingValue("0, 0")]
|
|||
|
|
public Point WindowLocation
|
|||
|
|
{
|
|||
|
|
get
|
|||
|
|
{
|
|||
|
|
return (Point)this["WindowLocation"];
|
|||
|
|
}
|
|||
|
|
set
|
|||
|
|
{
|
|||
|
|
this["WindowLocation"] = value;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
[UserScopedSetting]
|
|||
|
|
[DebuggerNonUserCode]
|
|||
|
|
[DefaultSettingValue("1500, 800")]
|
|||
|
|
public Size WindowSize
|
|||
|
|
{
|
|||
|
|
get
|
|||
|
|
{
|
|||
|
|
return (Size)this["WindowSize"];
|
|||
|
|
}
|
|||
|
|
set
|
|||
|
|
{
|
|||
|
|
this["WindowSize"] = value;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private static Settings defaultInstance = (Settings)SettingsBase.Synchronized(new Settings());
|
|||
|
|
}
|
|||
|
|
}
|