mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-06 21:28:53 +00:00
19 lines
580 B
C#
19 lines
580 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
/// Result returned by dialog.showMessageBox / dialog.showMessageBoxSync.
|
|
/// </summary>
|
|
/// <remarks>Up-to-date with Electron API 39.2</remarks>
|
|
public class MessageBoxResult
|
|
{
|
|
/// <summary>
|
|
/// The index of the clicked button.
|
|
/// </summary>
|
|
public int Response { get; set; }
|
|
|
|
/// <summary>
|
|
/// The checked state of the checkbox if CheckboxLabel was set; otherwise false.
|
|
/// </summary>
|
|
public bool CheckboxChecked { get; set; }
|
|
}
|
|
} |