JumpList.GetJumpList(Application) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
애플리케이션과 연결된 JumpList 개체를 반환합니다.
public:
static System::Windows::Shell::JumpList ^ GetJumpList(System::Windows::Application ^ application);
public static System.Windows.Shell.JumpList GetJumpList (System.Windows.Application application);
static member GetJumpList : System.Windows.Application -> System.Windows.Shell.JumpList
Public Shared Function GetJumpList (application As Application) As JumpList
매개 변수
- application
- Application
JumpList와 연결된 애플리케이션입니다.
반환
지정된 애플리케이션과 연결된 JumpList 개체입니다.
예제
다음 예제에서는 가져오는 방법을 보여 줍니다는 JumpList 현재 애플리케이션을 사용 하 여 연결 합니다. A JumpTask 가 컬렉션에 JumpItems 추가되고 최근 범주에 추가됩니다. 이 Apply 메서드는 Windows 셸에 업데이트 JumpList 된 항목을 적용하기 위해 호출됩니다. 이 예제는에서 사용할 수 있는 보다 큰 예제의 일부는 JumpList 클래스 개요입니다.
private void AddTask(object sender, RoutedEventArgs e)
{
// Configure a new JumpTask.
JumpTask jumpTask1 = new JumpTask();
// Get the path to Calculator and set the JumpTask properties.
jumpTask1.ApplicationPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.SystemX86), "calc.exe");
jumpTask1.IconResourcePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.SystemX86), "calc.exe");
jumpTask1.Title = "Calculator";
jumpTask1.Description = "Open Calculator.";
jumpTask1.CustomCategory = "User Added Tasks";
// Get the JumpList from the application and update it.
JumpList jumpList1 = JumpList.GetJumpList(App.Current);
jumpList1.JumpItems.Add(jumpTask1);
JumpList.AddToRecentCategory(jumpTask1);
jumpList1.Apply();
}
설명
메서드를 GetJumpList 호출하여 JumpList 현재 .Application .NET Framework Windows 셸에 현재 적용되는 Windows 필요하지 JumpList 않습니다.