20250216
This commit is contained in:
@@ -22,10 +22,11 @@ using OnDoc.Helper;
|
||||
using DOCGEN;
|
||||
using System.Globalization;
|
||||
using System.Threading;
|
||||
using Syncfusion.Windows.Forms;
|
||||
|
||||
namespace OnDoc.DocMgmt
|
||||
{
|
||||
public partial class Dokumenterstellung : SfForm, IMessageListener1
|
||||
public partial class Dokumenterstellung : SfForm, IMessageListener1
|
||||
{
|
||||
public int partnernr { get; set; } = 0;
|
||||
public int profilnr { get; set; } = 0;
|
||||
|
||||
@@ -120,6 +120,7 @@
|
||||
this.sfdatagridstandard.AccessibleName = "Table";
|
||||
this.sfdatagridstandard.AllowEditing = false;
|
||||
this.sfdatagridstandard.AllowFiltering = true;
|
||||
this.sfdatagridstandard.AllowResizingColumns = true;
|
||||
this.sfdatagridstandard.ContextMenuStrip = this.contextMenuStandard;
|
||||
this.sfdatagridstandard.Location = new System.Drawing.Point(3, 39);
|
||||
this.sfdatagridstandard.Name = "sfdatagridstandard";
|
||||
@@ -200,6 +201,8 @@
|
||||
//
|
||||
this.sfdatagridUsed.AccessibleName = "Table";
|
||||
this.sfdatagridUsed.AllowEditing = false;
|
||||
this.sfdatagridUsed.AllowFiltering = true;
|
||||
this.sfdatagridUsed.AllowResizingColumns = true;
|
||||
this.sfdatagridUsed.ContextMenuStrip = this.contextMenuUsed;
|
||||
this.sfdatagridUsed.Location = new System.Drawing.Point(3, 542);
|
||||
this.sfdatagridUsed.Name = "sfdatagridUsed";
|
||||
@@ -326,6 +329,8 @@
|
||||
this.Style.MdiChild.IconVerticalAlignment = System.Windows.Forms.VisualStyles.VerticalAlignment.Center;
|
||||
this.Text = "Serienbrief-Bearbeitung";
|
||||
this.Load += new System.EventHandler(this.SerienbriefBearbeitung_Load);
|
||||
this.ResizeEnd += new System.EventHandler(this.SerienbriefBearbeitung_ResizeEnd);
|
||||
this.Resize += new System.EventHandler(this.SerienbriefBearbeitung_Resize);
|
||||
this.toolStrip1.ResumeLayout(false);
|
||||
this.toolStrip1.PerformLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.sfdatagridstandard)).EndInit();
|
||||
|
||||
@@ -487,5 +487,26 @@ namespace OnDoc.DocMgmt
|
||||
this.Width = groupBox2.Width + 10;
|
||||
return;
|
||||
}
|
||||
|
||||
private void SerienbriefBearbeitung_ResizeEnd(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void SerienbriefBearbeitung_Resize(object sender, EventArgs e)
|
||||
{
|
||||
if (this.docPreview1.Visible == false)
|
||||
{
|
||||
this.groupBox2.Dock = DockStyle.Fill;
|
||||
this.sfdatagridDokspezifisch.Width = groupBox2.Width - 10;
|
||||
this.sfdatagridstandard.Width = groupBox2.Width - 10;
|
||||
this.sfdatagridUsed.Width = groupBox2.Width - 10;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.groupBox2.Dock = DockStyle.Left;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user