WPFアプリケーションのどこからでも使用できるコマンドを作成することに興味があります。
Cut
、Copy
、Paste
、およびその他のアプリケーションレベルのコマンドと同じように機能させたいです。
<Button Command="Paste" />
ApplicationインスタンスのCommandBindingsを設定できると思いましたが、そのプロパティは使用できません。
これはどのように行われますか?
私がこれまでに管理した最善の方法は、トップレベルウィンドウで一連のコマンドを作成し、次のようにそれらにアクセスすることです...:
<Button Command="{x:Static namespace::MainWindow.CommandName}" />
これは機能しますが、もちろん緊密に結合されているため、非常に脆弱です。
WPFアプリケーションの「すべてのWindows」にCommandBindingsをセットアップし、アプリケーションクラスにコマンドハンドラーを実装できます。
まず、静的コマンドコンテナクラスを作成します。例えば、
namespace WpfApplication1
{
public static class MyCommands
{
private static readonly RoutedUICommand doSomethingCommand = new RoutedUICommand("description", "DoSomethingCommand", typeof(MyCommands));
public static RoutedUICommand DoSomethingCommand
{
get
{
return doSomethingCommand;
}
}
}
}
次に、カスタムコマンドをButton.Commandに設定します。
<Window x:Class="WpfApplication1.MainWindow"
...
xmlns:local="clr-namespace:WpfApplication1">
<Grid>
...
<Button Command="local:MyCommands.DoSomethingCommand">Execute</Button>
</Grid>
</Window>
最後に、カスタムコマンドのコマンドハンドラーをApplicationクラスに実装します。
namespace WpfApplication1
{
public partial class App : Application
{
public App()
{
var binding = new CommandBinding(MyCommands.DoSomethingCommand, DoSomething, CanDoSomething);
// Register CommandBinding for all windows.
CommandManager.RegisterClassCommandBinding(typeof(Window), binding);
}
private void DoSomething(object sender, ExecutedRoutedEventArgs e)
{
...
}
private void CanDoSomething(object sender, CanExecuteRoutedEventArgs e)
{
...
e.CanExecute = true;
}
}
}
他のソリューションの複雑さは気に入らなかったが、数時間の調査の結果、それは本当に単純であることがわかった。
最初に通常どおりにコマンドを設定しますが、コマンドのインスタンスを取得できるように、WPFの静的プロパティを追加します。
class MyCommand : ICommand
{
// Singleton for the simple cases, may be replaced with your own factory
public static ICommand Instance { get; } = new MyCommand();
public bool CanExecute(object parameter)
{
return true; // TODO: Implement
}
public event EventHandler CanExecuteChanged;
public void Execute(object parameter)
{
// TODO: Implement
}
}
次のように、XAML(最後の行)にコマンドの名前空間への参照を追加します。
<Window
xmlns="http://schemas.Microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.Microsoft.com/winfx/2006/xaml"
xmlns:commands="clr-namespace:MyProject.Commands">
次に、次のようにXAMLで静的プロパティを参照します。
<Button Content="Button" Command="commands:MyCommand.Instance" />
StackOverflowのメンバーは私を何度も助けてくれたので、今は貢献して共有することにしました;-)
竹中翔の答えに基づいて、これが私の実装です。
私の興味は1つの再利用可能なファイルのみを作成することでした。
まず、コマンドコンテナクラスを作成します
namespace Helpers
{
public class SpecificHelper
{
private static RoutedUICommand _myCommand = new RoutedUICommand("myCmd","myCmd", typeof(SpecificHelper));
public static RoutedUICommand MyCommand { get { return _myCommand; } }
static SpecificHelper()
{
// Register CommandBinding for all windows.
CommandManager.RegisterClassCommandBinding(typeof(Window), new CommandBinding(MyCommand, MyCommand_Executed, MyCommand_CanExecute));
}
// TODO: replace UIElement type by type of parameter's binded object
#region MyCommand
internal static void MyCommand_Executed(object sender, ExecutedRoutedEventArgs e)
{
if (!verifType<UIElement>(e.Parameter)) return;
e.Handled = true;
// TODO : complete the execution code ...
}
internal static void SelectAll_CanExecute(object sender, CanExecuteRoutedEventArgs e)
{
if (!verifType<UIElement>(e.Parameter)) return;
e.CanExecute = true;
var item = (e.Parameter as UIElement);
// TODO : complete the execution code ...
}
#endregion
private static bool verifType<T>(object o)
{
if (o == null) return false;
if (!o.GetType().Equals(typeof(T))) return false;
return true;
}
}
}
次に、App.xamlでリソースを宣言します。
<Application x:Class="Helper.App"
xmlns="http://schemas.Microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.Microsoft.com/winfx/2006/xaml"
xmlns:h="clr-namespace:Helpers"
xmlns:d="http://schemas.Microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
StartupUri="MainWindow.xaml" >
<Application.Resources>
<h:SpecificHelper x:Key="sh" />
</Application.Resources>
</Application>
最後に、コマンドプロパティをアプリケーションリソースのプロパティにバインドします。
<Button Content="Click to execute my command"
Command="{Binding Source={StaticResource sh}, Path=MyCommand}"
CommandParameter="{Binding ElementName=myElement}" />
それはすべての人々です:-)
CommandBindings
またはInputBindings
をApp.xaml
のリソースとして定義しようとすると、XAMLでは次のいずれも使用できないため、これらを使用できないことがわかります。
<Window ... CommandBindings="{StaticResource commandBindings}">
または、スタイルセッターを使用してコマンドバインディングを設定するには:
<Setter Property="CommandBindings" Value="{StaticResource commandBindings}">
これらのプロパティにはどちらも「セット」アクセサがないためです。 この投稿 のアイデアを使用して、App.xaml
またはその他のリソース辞書からリソースを使用するクリーンな方法を思いつきました。
まず、他のリソースと同様に、コマンドバインディングと入力バインディングを間接的に定義します。
<InputBindingCollection x:Key="inputBindings">
<KeyBinding Command="Help" Key="H" Modifiers="Ctrl"/>
</InputBindingCollection>
<CommandBindingCollection x:Key="commandBindings">
<CommandBinding Command="Help" Executed="CommandBinding_Executed"/>
</CommandBindingCollection>
次に、別のクラスのXAMLからそれらを参照します。
<Window ...>
<i:Interaction.Behaviors>
<local:CollectionSetterBehavior Property="InputBindings" Value="{StaticResource inputBindings}"/>
<local:CollectionSetterBehavior Property="CommandBindings" Value="{StaticResource commandBindings}"/>
</i:Interaction.Behaviors>
...
</Window>
CollectionSetterBehavior
は再利用可能な動作であり、プロパティをその値に「設定」するのではなく、コレクションをクリアして再設定します。したがって、コレクションは変更されず、コンテンツのみが変更されます。
動作のソースは次のとおりです。
public class CollectionSetterBehavior : Behavior<FrameworkElement>
{
public string Property
{
get { return (string)GetValue(PropertyProperty); }
set { SetValue(PropertyProperty, value); }
}
public static readonly DependencyProperty PropertyProperty =
DependencyProperty.Register("Property", typeof(string), typeof(CollectionSetterBehavior), new UIPropertyMetadata(null));
public IList Value
{
get { return (IList)GetValue(ValueProperty); }
set { SetValue(ValueProperty, value); }
}
public static readonly DependencyProperty ValueProperty =
DependencyProperty.Register("Value", typeof(IList), typeof(CollectionSetterBehavior), new UIPropertyMetadata(null));
protected override void OnAttached()
{
var propertyInfo = AssociatedObject.GetType().GetProperty(Property);
var property = propertyInfo.GetGetMethod().Invoke(AssociatedObject, null) as IList;
property.Clear();
foreach (var item in Value) property.Add(item);
}
}
動作に慣れていない場合は、最初に次の名前空間を追加します。
xmlns:i="clr-namespace:System.Windows.Interactivity;Assembly=System.Windows.Interactivity"
対応する参照をプロジェクトに追加します。
どこでも再利用できる場所からCommandBinding
レベルでApplication
を宣言します。
<Application.Resources>
<CommandBinding x:Key="PasteCommandKey" Command="ApplicationCommands.Paste" CanExecute="CommandBinding_CanExecute_1"/>
</Application.Resources>
あなたのApp.xaml.cs
ファイル、対応するハンドラーを定義します:
private void CommandBinding_CanExecute_11(object sender, System.Windows.Input.CanExecuteRoutedEventArgs e)
{
e.CanExecute = false;
}
使用法
Xamlファイルでは、次のように使用します。
<RichTextBox x:Name="Rtb1" ContextMenuOpening="Rtb1_ContextMenuOpening_1" FontSize="15" Margin="10,10,10,-73">
<RichTextBox.CommandBindings>
<StaticResourceExtension ResourceKey="PasteCommandKey"/>
</RichTextBox.CommandBindings>