mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 11:46:30 +02:00
19 lines
383 B
C#
19 lines
383 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.IO;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Runtime.InteropServices.WindowsRuntime;
|
|||
|
|
using Windows.Foundation;
|
|||
|
|
using Windows.UI.Xaml.Controls;
|
|||
|
|
|
|||
|
|
namespace PowerLauncher.UI
|
|||
|
|
{
|
|||
|
|
public sealed partial class ResultList : UserControl
|
|||
|
|
{
|
|||
|
|
public ResultList()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|