mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 19:57:07 +02:00
Project structure change
This commit is contained in:
@@ -1,17 +1,21 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Windows.Controls;
|
||||
|
||||
namespace Wox.Plugin.Sys {
|
||||
/// <summary>
|
||||
/// Interaction logic for SysSettings.xaml
|
||||
/// </summary>
|
||||
public partial class SysSettings : UserControl {
|
||||
public SysSettings(List<Result> Results) {
|
||||
InitializeComponent();
|
||||
namespace Wox.Plugin.Sys
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for SysSettings.xaml
|
||||
/// </summary>
|
||||
public partial class SysSettings : UserControl
|
||||
{
|
||||
public SysSettings(List<Result> Results)
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
foreach (var Result in Results) {
|
||||
this.lbxCommands.Items.Add(Result);
|
||||
}
|
||||
}
|
||||
}
|
||||
foreach (var Result in Results)
|
||||
{
|
||||
this.lbxCommands.Items.Add(Result);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user