123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- using System;
- using FastReport.Forms;
- using FastReport.Utils;
- namespace FastReport.Cloud.StorageClient.Dropbox
- {
- /// <summary>
- /// Represents the Application Info diabolg form.
- /// </summary>
- public partial class ApplicationInfoForm : BaseDialogForm
- {
- #region Fields
- private string accessToken;
- #endregion // Fields
- #region Properties
- /// <summary>
- /// Gets the access token.
- /// </summary>
- public string AccessToken
- {
- get { return accessToken; }
- }
- #endregion // Properties
- #region Constructors
- /// <summary>
- /// Initializes a new instance of the <see cref="ApplicationInfoForm"/> class.
- /// </summary>
- public ApplicationInfoForm()
- {
- accessToken = "";
- InitializeComponent();
- Localize();
- UIUtils.CheckRTL(this);
- }
- #endregion // Constructors
- #region Public Methods
- /// <inheritdoc/>
- public override void Localize()
- {
- base.Localize();
- MyRes res = new MyRes("Cloud,Dropbox");
- this.Text = res.Get("ApplicationInfoDialog");
- labelAccessToken.Text = res.Get("AccessToken");
- }
- #endregion // Public Methods
- #region Events Handlers
- private void btnOk_Click(object sender, EventArgs e)
- {
- accessToken = tbAccessToken.Text;
- this.Close();
- }
- #endregion // Events Handlers
- }
- }
|