| File: System\Windows\Shell\JumpTask.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationFramework\PresentationFramework.csproj (PresentationFramework) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Windows.Shell { public class JumpTask : JumpItem { public JumpTask() : base() {} public string Title { get; set; } public string Description { get; set; } public string ApplicationPath { get; set; } public string Arguments { get; set; } public string WorkingDirectory { get; set; } public string IconResourcePath { get; set; } public int IconResourceIndex { get; set; } } }