UWPExtractor.Designer.cs 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. namespace UWPAppBackup
  2. {
  3. partial class UWPExtractor
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UWPExtractor));
  29. this.UwpApps = new System.Windows.Forms.ListBox();
  30. this.AppBackup = new System.Windows.Forms.Button();
  31. this.BackupProgress = new System.Windows.Forms.ProgressBar();
  32. this.SuspendLayout();
  33. //
  34. // UwpApps
  35. //
  36. this.UwpApps.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  37. | System.Windows.Forms.AnchorStyles.Left)
  38. | System.Windows.Forms.AnchorStyles.Right)));
  39. this.UwpApps.FormattingEnabled = true;
  40. this.UwpApps.Location = new System.Drawing.Point(12, 12);
  41. this.UwpApps.Name = "UwpApps";
  42. this.UwpApps.Size = new System.Drawing.Size(485, 264);
  43. this.UwpApps.TabIndex = 0;
  44. //
  45. // AppBackup
  46. //
  47. this.AppBackup.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  48. | System.Windows.Forms.AnchorStyles.Right)));
  49. this.AppBackup.Location = new System.Drawing.Point(12, 311);
  50. this.AppBackup.Name = "AppBackup";
  51. this.AppBackup.Size = new System.Drawing.Size(485, 28);
  52. this.AppBackup.TabIndex = 1;
  53. this.AppBackup.Text = "Backup App";
  54. this.AppBackup.UseVisualStyleBackColor = true;
  55. this.AppBackup.Click += new System.EventHandler(this.AppBackup_Click);
  56. //
  57. // BackupProgress
  58. //
  59. this.BackupProgress.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  60. | System.Windows.Forms.AnchorStyles.Right)));
  61. this.BackupProgress.Location = new System.Drawing.Point(12, 282);
  62. this.BackupProgress.Name = "BackupProgress";
  63. this.BackupProgress.Size = new System.Drawing.Size(485, 23);
  64. this.BackupProgress.TabIndex = 2;
  65. //
  66. // UWPExtractor
  67. //
  68. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  69. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  70. this.ClientSize = new System.Drawing.Size(509, 351);
  71. this.Controls.Add(this.BackupProgress);
  72. this.Controls.Add(this.AppBackup);
  73. this.Controls.Add(this.UwpApps);
  74. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  75. this.Name = "UWPExtractor";
  76. this.Text = "UWP Backup Tool";
  77. this.Load += new System.EventHandler(this.Form1_Load);
  78. this.ResumeLayout(false);
  79. }
  80. #endregion
  81. private System.Windows.Forms.ListBox UwpApps;
  82. private System.Windows.Forms.Button AppBackup;
  83. private System.Windows.Forms.ProgressBar BackupProgress;
  84. }
  85. }