forked from shaba/openuds
50ff0c1da1
I have fixed it checking the Resize Event on Main panel control, and setting the size of the child to the parent size. Now it seems to work correctly (if it happens in more places, it will have to be done this way also)
188 lines
8.5 KiB
C#
188 lines
8.5 KiB
C#
namespace UdsAdmin.controls.panel
|
|
{
|
|
partial class DeployedServicesPanel
|
|
{
|
|
/// <summary>
|
|
/// Variable del diseñador requerida.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Limpiar los recursos que se estén utilizando.
|
|
/// </summary>
|
|
/// <param name="disposing">true si los recursos administrados se deben eliminar; false en caso contrario, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Código generado por el Diseñador de componentes
|
|
|
|
/// <summary>
|
|
/// Método necesario para admitir el Diseñador. No se puede modificar
|
|
/// el contenido del método con el editor de código.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DeployedServicesPanel));
|
|
this.listView = new System.Windows.Forms.ListView();
|
|
this.name = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.kind = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.state = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.comments = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.tabControl1 = new System.Windows.Forms.TabControl();
|
|
this.tabPage1 = new System.Windows.Forms.TabPage();
|
|
this.splitContainer1 = new UdsAdmin.controls.SplitContainerEx();
|
|
this.logViewer1 = new UdsAdmin.controls.panel.LogViewer();
|
|
this.tabPage2 = new System.Windows.Forms.TabPage();
|
|
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
this.assignedChart = new UdsAdmin.controls.panel.ChartPanel();
|
|
this.inUseChart = new UdsAdmin.controls.panel.ChartPanel();
|
|
this.tabControl1.SuspendLayout();
|
|
this.tabPage1.SuspendLayout();
|
|
this.splitContainer1.Panel1.SuspendLayout();
|
|
this.splitContainer1.Panel2.SuspendLayout();
|
|
this.splitContainer1.SuspendLayout();
|
|
this.tabPage2.SuspendLayout();
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// listView
|
|
//
|
|
this.listView.AutoArrange = false;
|
|
this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.name,
|
|
this.kind,
|
|
this.state,
|
|
this.comments});
|
|
resources.ApplyResources(this.listView, "listView");
|
|
this.listView.FullRowSelect = true;
|
|
this.listView.GridLines = true;
|
|
this.listView.Name = "listView";
|
|
this.listView.UseCompatibleStateImageBehavior = false;
|
|
this.listView.View = System.Windows.Forms.View.Details;
|
|
this.listView.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listView_ColumnClick);
|
|
this.listView.SelectedIndexChanged += new System.EventHandler(this.listView_SelectedIndexChanged);
|
|
this.listView.KeyUp += new System.Windows.Forms.KeyEventHandler(this.listView_KeyUp);
|
|
//
|
|
// name
|
|
//
|
|
resources.ApplyResources(this.name, "name");
|
|
this.name.Width = global::UdsAdmin.Properties.Settings.Default.wNameCol;
|
|
//
|
|
// kind
|
|
//
|
|
resources.ApplyResources(this.kind, "kind");
|
|
//
|
|
// state
|
|
//
|
|
resources.ApplyResources(this.state, "state");
|
|
this.state.Width = global::UdsAdmin.Properties.Settings.Default.wStateCol;
|
|
//
|
|
// comments
|
|
//
|
|
resources.ApplyResources(this.comments, "comments");
|
|
this.comments.Width = global::UdsAdmin.Properties.Settings.Default.wCommentsCol;
|
|
//
|
|
// tabControl1
|
|
//
|
|
resources.ApplyResources(this.tabControl1, "tabControl1");
|
|
this.tabControl1.Controls.Add(this.tabPage1);
|
|
this.tabControl1.Controls.Add(this.tabPage2);
|
|
this.tabControl1.Name = "tabControl1";
|
|
this.tabControl1.SelectedIndex = 0;
|
|
this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
|
|
//
|
|
// tabPage1
|
|
//
|
|
this.tabPage1.Controls.Add(this.splitContainer1);
|
|
resources.ApplyResources(this.tabPage1, "tabPage1");
|
|
this.tabPage1.Name = "tabPage1";
|
|
this.tabPage1.UseVisualStyleBackColor = true;
|
|
//
|
|
// splitContainer1
|
|
//
|
|
this.splitContainer1.BackColor = System.Drawing.Color.Transparent;
|
|
resources.ApplyResources(this.splitContainer1, "splitContainer1");
|
|
this.splitContainer1.Name = "splitContainer1";
|
|
//
|
|
// splitContainer1.Panel1
|
|
//
|
|
this.splitContainer1.Panel1.Controls.Add(this.listView);
|
|
//
|
|
// splitContainer1.Panel2
|
|
//
|
|
this.splitContainer1.Panel2.Controls.Add(this.logViewer1);
|
|
//
|
|
// logViewer1
|
|
//
|
|
resources.ApplyResources(this.logViewer1, "logViewer1");
|
|
this.logViewer1.Name = "logViewer1";
|
|
//
|
|
// tabPage2
|
|
//
|
|
this.tabPage2.Controls.Add(this.tableLayoutPanel1);
|
|
resources.ApplyResources(this.tabPage2, "tabPage2");
|
|
this.tabPage2.Name = "tabPage2";
|
|
this.tabPage2.UseVisualStyleBackColor = true;
|
|
//
|
|
// tableLayoutPanel1
|
|
//
|
|
resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
|
|
this.tableLayoutPanel1.Controls.Add(this.assignedChart, 0, 0);
|
|
this.tableLayoutPanel1.Controls.Add(this.inUseChart, 0, 1);
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
//
|
|
// assignedChart
|
|
//
|
|
resources.ApplyResources(this.assignedChart, "assignedChart");
|
|
this.assignedChart.Name = "assignedChart";
|
|
//
|
|
// inUseChart
|
|
//
|
|
resources.ApplyResources(this.inUseChart, "inUseChart");
|
|
this.inUseChart.Name = "inUseChart";
|
|
//
|
|
// DeployedServicesPanel
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.Color.Transparent;
|
|
this.Controls.Add(this.tabControl1);
|
|
this.DoubleBuffered = true;
|
|
this.Name = "DeployedServicesPanel";
|
|
this.VisibleChanged += new System.EventHandler(this.UsersPanel_VisibleChanged);
|
|
this.Resize += new System.EventHandler(this.DeployedServicesPanel_Resize);
|
|
this.tabControl1.ResumeLayout(false);
|
|
this.tabPage1.ResumeLayout(false);
|
|
this.splitContainer1.Panel1.ResumeLayout(false);
|
|
this.splitContainer1.Panel2.ResumeLayout(false);
|
|
this.splitContainer1.ResumeLayout(false);
|
|
this.tabPage2.ResumeLayout(false);
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ListView listView;
|
|
private System.Windows.Forms.ColumnHeader name;
|
|
private System.Windows.Forms.ColumnHeader state;
|
|
private System.Windows.Forms.ColumnHeader comments;
|
|
private System.Windows.Forms.ColumnHeader kind;
|
|
private System.Windows.Forms.TabControl tabControl1;
|
|
private System.Windows.Forms.TabPage tabPage1;
|
|
private SplitContainerEx splitContainer1;
|
|
private LogViewer logViewer1;
|
|
private System.Windows.Forms.TabPage tabPage2;
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|
private ChartPanel assignedChart;
|
|
private ChartPanel inUseChart;
|
|
}
|
|
}
|