private RestoreDatabase()
 {
     InitializeComponent();
     GFunctions.ColumSizeFix(dgvBackupStorage);
     config        = Config.Instance;
     objectStorage = ObjectStorage.Instance;
     WriteConfig2TextBox();
 }
 private UploadLocal2Object()
 {
     InitializeComponent();
     GFunctions.ColumSizeFix(dgvLocalDrive);
     GFunctions.ColumSizeFix(dgvObjectStorage);
     config        = Config.Instance;
     objectStorage = ObjectStorage.Instance;
     WriteConfig2TextBox();
 }
 private DownloadInternal2Object()
 {
     InitializeComponent();
     GFunctions.ColumSizeFix(dgvInternalStorage);
     GFunctions.ColumSizeFix(dgvObjectStorage);
     config        = Config.Instance;
     objectStorage = ObjectStorage.Instance;
     WriteConfig2TextBox();
 }
Esempio n. 4
0
        private RestoreDatabase()
        {
            InitializeComponent();
            dgvBackupStorage.RowHeadersVisible = false;
            dgvBackupStorage.BackgroundColor   = Color.White;

            config        = Config.Instance;
            objectStorage = ObjectStorage.Instance;
            WriteConfig2TextBox();
        }
 private UploadLocal2Object()
 {
     InitializeComponent();
     dgvLocalDrive.RowHeadersVisible    = false;
     dgvLocalDrive.BackgroundColor      = Color.White;
     dgvObjectStorage.RowHeadersVisible = false;
     dgvObjectStorage.BackgroundColor   = Color.White;
     config        = Config.Instance;
     objectStorage = ObjectStorage.Instance;
     WriteConfig2TextBox();
 }
        private Configuration()
        {
            InitializeComponent();
            textBoxEndPointLable.Text        = @"http://docs.ncloud.com/en/storage/storage-7-1.html";
            textBoxEndPointLable.ReadOnly    = true;
            textBoxEndPointLable.BorderStyle = 0;
            textBoxEndPointLable.BackColor   = this.BackColor;
            textBoxEndPointLable.TabStop     = false;

            textBoxAPIEndPointLable.Text        = @"http://docs.ncloud.com/ko/api_new/api_new-9-1.html";
            textBoxAPIEndPointLable.ReadOnly    = true;
            textBoxAPIEndPointLable.BorderStyle = 0;
            textBoxAPIEndPointLable.BackColor   = this.BackColor;
            textBoxAPIEndPointLable.TabStop     = false;

            config        = Config.Instance;
            objectStorage = ObjectStorage.Instance;
        }
        private Configuration()
        {
            InitializeComponent();
            textBoxEndPointLable.Text        = @"https://api.ncloud-docs.com/docs/storage-objectstorage";
            textBoxEndPointLable.ReadOnly    = true;
            textBoxEndPointLable.BorderStyle = 0;
            textBoxEndPointLable.BackColor   = this.BackColor;
            textBoxEndPointLable.TabStop     = false;

            textBoxAPIEndPointLable.Text        = @"https://api.ncloud-docs.com/docs/database-clouddb";
            textBoxAPIEndPointLable.ReadOnly    = true;
            textBoxAPIEndPointLable.BorderStyle = 0;
            textBoxAPIEndPointLable.BackColor   = this.BackColor;
            textBoxAPIEndPointLable.TabStop     = false;

            config   = Config.Instance;
            Platform = config.GetEnumValue(Category.Config, Key.Platform);
            ZoneVariableChange();

            objectStorage = ObjectStorage.Instance;
        }