1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- using System;
- using System.Windows.Forms;
- using FastReport.Forms;
- using FastReport.Utils;
- namespace FastReport.Cloud.StorageClient.SkyDrive
- {
- /// <summary>
- /// Represents the Client Info diabolg form.
- /// </summary>
- public partial class ClientInfoForm : BaseDialogForm
- {
- #region Fields
- #pragma warning disable FR0001 // Field names must be longer than 2 characters.
- private string id;
- #pragma warning restore FR0001 // Field names must be longer than 2 characters.
- private string secret;
- #endregion // Fields
- #region Properties
- /// <summary>
- /// Gets the client ID.
- /// </summary>
- public string Id
- {
- get { return id; }
- }
- /// <summary>
- /// Gets the client secret.
- /// </summary>
- public string Secret
- {
- get { return secret; }
- }
- #endregion // Properties
- #region Constructors
- /// <summary>
- /// Initializes a new instance of the <see cref="ClientInfoForm"/> class.
- /// </summary>
- public ClientInfoForm()
- {
- this.id = "";
- this.secret = "";
- InitializeComponent();
- Localize();
- UIUtils.CheckRTL(this);
- UpdateDpiDependencies();
- }
- #endregion // Constructors
- #region Public Methods
- /// <inheritdoc/>
- public override void Localize()
- {
- base.Localize();
- MyRes res = new MyRes("Cloud,SkyDrive");
- this.Text = res.Get("ClientInfoDialog");
- labelClientId.Text = res.Get("ClientId");
- }
- #endregion // Public Methods
- #region Events Handlers
- private void btnOk_Click(object sender, EventArgs e)
- {
- id = tbClientId.Text;
- this.Close();
- }
- #endregion // Events Handlers
- }
- }
|