1 | #region License Information |
---|
2 | /* HeuristicLab |
---|
3 | * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) |
---|
4 | * |
---|
5 | * This file is part of HeuristicLab. |
---|
6 | * |
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify |
---|
8 | * it under the terms of the GNU General Public License as published by |
---|
9 | * the Free Software Foundation, either version 3 of the License, or |
---|
10 | * (at your option) any later version. |
---|
11 | * |
---|
12 | * HeuristicLab is distributed in the hope that it will be useful, |
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
15 | * GNU General Public License for more details. |
---|
16 | * |
---|
17 | * You should have received a copy of the GNU General Public License |
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. |
---|
19 | */ |
---|
20 | #endregion |
---|
21 | |
---|
22 | using System; |
---|
23 | namespace HeuristicLab.Clients.Access.Views { |
---|
24 | partial class RefreshableLightweightAccessClientInformationView { |
---|
25 | /// <summary> |
---|
26 | /// Required designer variable. |
---|
27 | /// </summary> |
---|
28 | private System.ComponentModel.IContainer components = null; |
---|
29 | |
---|
30 | /// <summary> |
---|
31 | /// Clean up any resources being used. |
---|
32 | /// </summary> |
---|
33 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> |
---|
34 | protected override void Dispose(bool disposing) { |
---|
35 | if (disposing && (components != null)) { |
---|
36 | lightweightUserInformationView.UserInformationChanged -= new EventHandler(lightweightUserInformationView_Changed); |
---|
37 | components.Dispose(); |
---|
38 | } |
---|
39 | base.Dispose(disposing); |
---|
40 | } |
---|
41 | |
---|
42 | #region Component Designer generated code |
---|
43 | |
---|
44 | /// <summary> |
---|
45 | /// Required method for Designer support - do not modify |
---|
46 | /// the contents of this method with the code editor. |
---|
47 | /// </summary> |
---|
48 | private void InitializeComponent() { |
---|
49 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RefreshableLightweightAccessClientInformationView)); |
---|
50 | this.lightweightUserInformationView = new HeuristicLab.Clients.Access.Views.LightweightUserInformationView(); |
---|
51 | this.storeButton = new System.Windows.Forms.Button(); |
---|
52 | this.SuspendLayout(); |
---|
53 | // |
---|
54 | // refreshButton |
---|
55 | // |
---|
56 | this.refreshButton.Location = new System.Drawing.Point(4, 3); |
---|
57 | // |
---|
58 | // lightweightUserInformationView |
---|
59 | // |
---|
60 | this.lightweightUserInformationView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) |
---|
61 | | System.Windows.Forms.AnchorStyles.Left) |
---|
62 | | System.Windows.Forms.AnchorStyles.Right))); |
---|
63 | this.lightweightUserInformationView.Caption = "RefreshableLightweightUserInformation View"; |
---|
64 | this.lightweightUserInformationView.Content = null; |
---|
65 | this.lightweightUserInformationView.Location = new System.Drawing.Point(3, 33); |
---|
66 | this.lightweightUserInformationView.Name = "lightweightUserInformationView"; |
---|
67 | this.lightweightUserInformationView.ReadOnly = false; |
---|
68 | this.lightweightUserInformationView.Size = new System.Drawing.Size(378, 245); |
---|
69 | this.lightweightUserInformationView.TabIndex = 2; |
---|
70 | // |
---|
71 | // storeButton |
---|
72 | // |
---|
73 | this.storeButton.Enabled = false; |
---|
74 | this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save; |
---|
75 | this.storeButton.Location = new System.Drawing.Point(34, 3); |
---|
76 | this.storeButton.Name = "storeButton"; |
---|
77 | this.storeButton.Size = new System.Drawing.Size(24, 24); |
---|
78 | this.storeButton.TabIndex = 3; |
---|
79 | this.storeButton.UseVisualStyleBackColor = true; |
---|
80 | this.storeButton.Click += new System.EventHandler(this.storeButton_Click); |
---|
81 | // |
---|
82 | // RefreshableLightweightAccessClientInformationView |
---|
83 | // |
---|
84 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); |
---|
85 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
---|
86 | this.Controls.Add(this.lightweightUserInformationView); |
---|
87 | this.Controls.Add(this.storeButton); |
---|
88 | this.Name = "RefreshableLightweightAccessClientInformationView"; |
---|
89 | this.Size = new System.Drawing.Size(384, 281); |
---|
90 | this.Controls.SetChildIndex(this.storeButton, 0); |
---|
91 | this.Controls.SetChildIndex(this.lightweightUserInformationView, 0); |
---|
92 | this.Controls.SetChildIndex(this.refreshButton, 0); |
---|
93 | this.ResumeLayout(false); |
---|
94 | |
---|
95 | } |
---|
96 | |
---|
97 | #endregion |
---|
98 | |
---|
99 | private LightweightUserInformationView lightweightUserInformationView; |
---|
100 | private System.Windows.Forms.Button storeButton; |
---|
101 | |
---|
102 | } |
---|
103 | } |
---|