Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ClientUserManagement/HeuristicLab.Clients.Access/3.3/Views/RefreshableView.Designer.cs @ 7368

Last change on this file since 7368 was 7368, checked in by ascheibe, 12 years ago

#1648 added first version of an access client, access items and views for displaying them

File size: 2.8 KB
Line 
1namespace HeuristicLab.Clients.Access.Views {
2  partial class RefreshableView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.refreshButton = new System.Windows.Forms.Button();
27      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
28      this.SuspendLayout();
29      //
30      // refreshButton
31      //
32      this.refreshButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
33      this.refreshButton.Location = new System.Drawing.Point(3, 3);
34      this.refreshButton.Name = "refreshButton";
35      this.refreshButton.Size = new System.Drawing.Size(24, 24);
36      this.refreshButton.TabIndex = 1;
37      this.refreshButton.UseVisualStyleBackColor = true;
38      this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
39      //
40      // viewHost
41      //
42      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
43                  | System.Windows.Forms.AnchorStyles.Left)
44                  | System.Windows.Forms.AnchorStyles.Right)));
45      this.viewHost.Caption = "View";
46      this.viewHost.Content = null;
47      this.viewHost.Enabled = false;
48      this.viewHost.Location = new System.Drawing.Point(3, 33);
49      this.viewHost.Name = "viewHost";
50      this.viewHost.ReadOnly = false;
51      this.viewHost.Size = new System.Drawing.Size(500, 218);
52      this.viewHost.TabIndex = 2;
53      this.viewHost.ViewsLabelVisible = true;
54      this.viewHost.ViewType = null;
55      //
56      // RefreshableView
57      //
58      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
59      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
60      this.Controls.Add(this.viewHost);
61      this.Controls.Add(this.refreshButton);
62      this.Name = "RefreshableView";
63      this.Size = new System.Drawing.Size(506, 254);
64      this.ResumeLayout(false);
65
66    }
67
68    #endregion
69
70    private System.Windows.Forms.Button refreshButton;
71    private MainForm.WindowsForms.ViewHost viewHost;
72  }
73}
Note: See TracBrowser for help on using the repository browser.