2017-10-15 17:03:07 +02:00
|
|
|
|
namespace ElectronNET.API.Entities
|
|
|
|
|
|
{
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// <summary>
|
2025-11-22 02:16:10 +01:00
|
|
|
|
/// Result returned by dialog.showMessageBox / dialog.showMessageBoxSync.
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// </summary>
|
2025-11-22 02:16:10 +01:00
|
|
|
|
/// <remarks>Up-to-date with Electron API 39.2</remarks>
|
2017-10-15 17:03:07 +02:00
|
|
|
|
public class MessageBoxResult
|
|
|
|
|
|
{
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// <summary>
|
2025-11-22 02:16:10 +01:00
|
|
|
|
/// The index of the clicked button.
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// </summary>
|
2017-10-15 17:03:07 +02:00
|
|
|
|
public int Response { get; set; }
|
|
|
|
|
|
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// <summary>
|
2025-11-22 02:16:10 +01:00
|
|
|
|
/// The checked state of the checkbox if CheckboxLabel was set; otherwise false.
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// </summary>
|
2017-10-15 17:03:07 +02:00
|
|
|
|
public bool CheckboxChecked { get; set; }
|
|
|
|
|
|
}
|
2025-11-15 08:05:31 +01:00
|
|
|
|
}
|