mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
18 lines
385 B
C#
18 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);
|
|
}
|
|
}
|
|
}
|
|
}
|