mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 18:57:19 +02:00
72 lines
3.0 KiB
C#
72 lines
3.0 KiB
C#
// Copyright (c) Microsoft Corporation
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
using System;
|
|
using System.Collections.ObjectModel;
|
|
using Microsoft.PowerToys.Settings.UI.ViewModels;
|
|
using Windows.UI.Xaml.Controls;
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Views
|
|
{
|
|
public sealed partial class PowerLauncherPage : Page
|
|
{
|
|
public PowerLauncherViewModel ViewModel { get; set; }
|
|
|
|
private readonly ObservableCollection<Tuple<string, string>> searchResultPreferencesOptions;
|
|
private readonly ObservableCollection<Tuple<string, string>> searchTypePreferencesOptions;
|
|
|
|
public PowerLauncherPage()
|
|
{
|
|
InitializeComponent();
|
|
ViewModel = new PowerLauncherViewModel();
|
|
DataContext = ViewModel;
|
|
|
|
var loader = Windows.ApplicationModel.Resources.ResourceLoader.GetForCurrentView();
|
|
|
|
searchResultPreferencesOptions = new ObservableCollection<Tuple<string, string>>();
|
|
searchResultPreferencesOptions.Add(Tuple.Create(loader.GetString("PowerLauncher_SearchResultPreference_AlphabeticalOrder"), "alphabetical_order"));
|
|
searchResultPreferencesOptions.Add(Tuple.Create(loader.GetString("PowerLauncher_SearchResultPreference_MostRecentlyUsed"), "most_recently_used"));
|
|
searchResultPreferencesOptions.Add(Tuple.Create(loader.GetString("PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications"), "running_processes_open_applications"));
|
|
|
|
searchTypePreferencesOptions = new ObservableCollection<Tuple<string, string>>();
|
|
searchTypePreferencesOptions.Add(Tuple.Create(loader.GetString("PowerLauncher_SearchTypePreference_ApplicationName"), "application_name"));
|
|
searchTypePreferencesOptions.Add(Tuple.Create(loader.GetString("PowerLauncher_SearchTypePreference_StringInApplication"), "string_in_application"));
|
|
searchTypePreferencesOptions.Add(Tuple.Create(loader.GetString("PowerLauncher_SearchTypePreference_ExecutableName"), "executable_name"));
|
|
}
|
|
|
|
/*
|
|
public Tuple<string, string> SelectedSearchResultPreference
|
|
{
|
|
get
|
|
{
|
|
return searchResultPreferencesOptions.First(item => item.Item2 == ViewModel.SearchResultPreference);
|
|
}
|
|
|
|
set
|
|
{
|
|
if (ViewModel.SearchResultPreference != value.Item2)
|
|
{
|
|
ViewModel.SearchResultPreference = value.Item2;
|
|
}
|
|
}
|
|
}
|
|
|
|
public Tuple<string, string> SelectedSearchTypePreference
|
|
{
|
|
get
|
|
{
|
|
return searchTypePreferencesOptions.First(item => item.Item2 == ViewModel.SearchTypePreference);
|
|
}
|
|
|
|
set
|
|
{
|
|
if (ViewModel.SearchTypePreference != value.Item2)
|
|
{
|
|
ViewModel.SearchTypePreference = value.Item2;
|
|
}
|
|
}
|
|
}
|
|
*/
|
|
}
|
|
}
|