mirror of
https://github.com/4sval/FModel.git
synced 2026-06-20 23:10:07 -05:00
13 lines
657 B
C#
13 lines
657 B
C#
using System.Windows.Input;
|
|
|
|
namespace FModel.Commands
|
|
{
|
|
static class FModel_Commands
|
|
{
|
|
public static readonly RoutedUICommand OpenSettings = new RoutedUICommand("Open Settings Window", "OpenSettings", typeof(MainWindow));
|
|
public static readonly RoutedUICommand OpenSearch = new RoutedUICommand("Open Search Window", "OpenSearch", typeof(MainWindow));
|
|
public static readonly RoutedUICommand OpenOutput = new RoutedUICommand("Open Output Folder", "OpenOutput", typeof(MainWindow));
|
|
public static readonly RoutedUICommand MergeImages = new RoutedUICommand("Merge Images", "MergeImages", typeof(MainWindow));
|
|
}
|
|
}
|