mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 11:09:28 +08:00
19 lines
385 B
C#
19 lines
385 B
C#
using System.Collections.Generic;
|
|
using System.Windows.Controls;
|
|
|
|
namespace Wox.Plugin.Sys
|
|
{
|
|
public partial class SysSettings : UserControl
|
|
{
|
|
public SysSettings(List<Result> Results)
|
|
{
|
|
InitializeComponent();
|
|
|
|
foreach (var Result in Results)
|
|
{
|
|
lbxCommands.Items.Add(Result);
|
|
}
|
|
}
|
|
}
|
|
}
|