2021-09-17 16:05:40 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
|
|
namespace ElectronNET.API.Entities
|
2017-10-14 00:06:58 +02:00
|
|
|
|
{
|
|
|
|
|
|
public class JumpListSettings
|
|
|
|
|
|
{
|
2017-10-14 14:41:11 +02:00
|
|
|
|
/// <summary>
|
2020-05-31 03:09:54 +02:00
|
|
|
|
/// The minimum number of items that will be shown in the Jump List (for a more detailed description of this value see the
|
|
|
|
|
|
/// <see href="https://msdn.microsoft.com/en-us/library/windows/desktop/dd378398(v=vs.85).aspx">MSDN</see> docs).
|
2017-10-14 14:41:11 +02:00
|
|
|
|
/// </summary>
|
2017-10-14 00:06:58 +02:00
|
|
|
|
public int MinItems { get; set; } = 0;
|
|
|
|
|
|
|
2017-10-14 14:41:11 +02:00
|
|
|
|
/// <summary>
|
2020-05-31 03:09:54 +02:00
|
|
|
|
/// Array of JumpListItem objects that correspond to items that the user has explicitly removed from custom categories
|
|
|
|
|
|
/// in the Jump List. These items must not be re-added to the Jump List in the next call to <see cref="App.SetJumpList"/>, Windows will
|
|
|
|
|
|
/// not display any custom category that contains any of the removed items.
|
2017-10-14 14:41:11 +02:00
|
|
|
|
/// </summary>
|
2021-09-17 16:05:40 +02:00
|
|
|
|
public JumpListItem[] RemovedItems { get; set; } = Array.Empty<JumpListItem>();
|
2017-10-14 00:06:58 +02:00
|
|
|
|
}
|
2020-05-31 03:09:54 +02:00
|
|
|
|
}
|