mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-11 21:23:48 +00:00
* Shell.OpenExternal API fix for Electron 9.0.0 * Shell.MoveItemToTrash API fix for Electron 9.0.0 and added new macOS parameter * Shell.ReadShortcutLink API fix for Electron 9.0.0 * Summaries have been rewritten
22 lines
602 B
C#
22 lines
602 B
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
/// Controls the behavior of OpenExternal.
|
|
/// </summary>
|
|
public class OpenExternalOptions
|
|
{
|
|
/// <summary>
|
|
/// <see langword="true"/> to bring the opened application to the foreground. The default is <see langword="true"/>.
|
|
/// </summary>
|
|
[DefaultValue(true)]
|
|
public bool Activate { get; set; } = true;
|
|
|
|
/// <summary>
|
|
/// The working directory.
|
|
/// </summary>
|
|
public string WorkingDirectory { get; set; }
|
|
}
|
|
} |