Skip to content

Commit

Permalink
Update KryptonMessageBoxData.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
PWagner1 committed Dec 1, 2023
1 parent 77e1673 commit 91012c3
Showing 1 changed file with 29 additions and 68 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,122 +34,83 @@ public struct KryptonMessageBoxData

/// <summary>Gets or sets the icon.</summary>
/// <value>The icon.</value>
public KryptonMessageBoxIcon Icon
{
get; set;
}
public KryptonMessageBoxIcon Icon { get; set; }

/// <summary>Gets or sets the default button.</summary>
/// <value>The default button.</value>
public KryptonMessageBoxDefaultButton? DefaultButton
{
get; set;
}
public KryptonMessageBoxDefaultButton? DefaultButton { get; set; }

/// <summary>Gets or sets the <see cref="MessageBoxOptions"/>.</summary>
/// <value>The <see cref="MessageBoxOptions"/>.</value>
public MessageBoxOptions Options
{
get; set;
}
public MessageBoxOptions Options { get; set; }

/// <summary>Gets or sets the help information.</summary>
/// <value>The help information.</value>
public HelpInfo? HelpInfo
{
get; set;
}
public HelpInfo? HelpInfo { get; set; }

/// <summary>Gets or sets the show control copy.</summary>
/// <value>The show control copy.</value>
public bool? ShowCtrlCopy
{
get; set;
}
public bool? ShowCtrlCopy { get; set; }

/// <summary>Gets or sets the show help button.</summary>
/// <value>The show help button.</value>
public bool? ShowHelpButton
{
get; set;
}
public bool? ShowHelpButton { get; set; }

/// <summary>Gets or sets the show action button.</summary>
/// <value>The show action button.</value>
public bool? ShowActionButton
{
get; set;
}
public bool? ShowActionButton { get; set; }

/// <summary>Gets or sets the action button text.</summary>
/// <value>The action button text.</value>
public string? ActionButtonText
{
get; set;
}
public string? ActionButtonText { get; set; }

/// <summary>Gets or sets the action button command.</summary>
/// <value>The action button command.</value>
public KryptonCommand? ActionButtonCommand
{
get; set;
}
public KryptonCommand? ActionButtonCommand { get; set; }

/// <summary>Gets or sets the application image.</summary>
/// <value>The application image.</value>
public Image? ApplicationImage
{
get; set;
}
public Image? ApplicationImage { get; set; }

/// <summary>Gets or sets the application path.</summary>
/// <value>The application path.</value>
public string? ApplicationPath
{
get; set;
}
public string? ApplicationPath { get; set; }

/// <summary>Gets or sets the type of the message content area.</summary>
/// <value>The type of the message content area.</value>
public MessageBoxContentAreaType? MessageContentAreaType
{
get; set;
}
public MessageBoxContentAreaType? MessageContentAreaType { get; set; }

/// <summary>Gets or sets the link label command.</summary>
/// <value>The link label command.</value>
public KryptonCommand? LinkLabelCommand
{
get; set;
}
public KryptonCommand? LinkLabelCommand { get; set; }

/// <summary>Gets or sets the link launch argument.</summary>
/// <value>The link launch argument.</value>
public ProcessStartInfo? LinkLaunchArgument
{
get; set;
}
public ProcessStartInfo? LinkLaunchArgument { get; set; }

/// <summary>Gets or sets the content link area.</summary>
/// <value>The content link area.</value>
public LinkArea? ContentLinkArea
{
get; set;
}
public LinkArea? ContentLinkArea { get; set; }

/// <summary>Gets or sets the message text alignment.</summary>
/// <value>The message text alignment.</value>
public ContentAlignment? MessageTextAlignment
{
get; set;
}
public ContentAlignment? MessageTextAlignment { get; set; }

/// <summary>Gets or sets the force use of operating system icons.</summary>
/// <value>Forces the use of operating system icons.</value>
public bool? ForceUseOfOperatingSystemIcons
{
get; set;
}
public bool? ForceUseOfOperatingSystemIcons { get; set; }

/// <summary>Gets or sets the help file path for <see cref="HelpInfo"/>.</summary>
/// <value>The help file path.</value>
public string? HelpFilePath { get; set; }

/// <summary>Gets or sets the help navigator for <see cref="HelpInfo"/>.</summary>
/// <value>The help navigator.</value>
public HelpNavigator? HelpNavigator { get; set; }

/// <summary>Gets or sets the help parameters for <see cref="HelpInfo"/>.</summary>
/// <value>The help parameters.</value>
public object? HelpParameters { get; set; }

#endregion

Expand Down

0 comments on commit 91012c3

Please sign in to comment.