Kleine Änderungen
This commit is contained in:
parent
c0dc89da56
commit
4ddb6d2cd5
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -543,6 +543,10 @@ namespace Eugen.ESystem.Windows.Forms
|
||||
return crypt.DecryptString(encryptedText.Replace("$$$$", ""), password);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Sets a customer width of the user control
|
||||
/// </summary>
|
||||
/// <param name="width">The width. Min=316, Max=800</param>
|
||||
public void SetDialogWidth(int width)
|
||||
{
|
||||
if (width >= this.MinimumSize.Width && width <= this.MaximumSize.Width)
|
||||
@ -558,6 +562,10 @@ namespace Eugen.ESystem.Windows.Forms
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Sets a customer height of the user control
|
||||
/// </summary>
|
||||
/// <param name="height">The height. Min=227, Max=600</param>
|
||||
public void SetDialogHeight(int height)
|
||||
{
|
||||
if (height >= this.MinimumSize.Height && height <= this.MaximumSize.Height)
|
||||
|
||||
Binary file not shown.
Loading…
Reference in New Issue
Block a user