メソッドにバインドできるコンバータ用のthis question'sanswerを参照してください。
おそらくそれを変更して、どのクラスの静的メソッドにもアクセスできるようにすることができます。
編集:ここでは、リフレクションを介してメソッドを見つけるはずの変更されたコンバータを示します。
(注:あなたが実際に任意の値を結合しないように、代わりにmarkup extensionを使用したほうが良いでしょう。)
public sealed class StaticMethodToValueConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
try
{
var methodPath = (parameter as string).Split('.');
if (methodPath.Length < 2) return DependencyProperty.UnsetValue;
string methodName = methodPath.Last();
var fullClassPath = new List<string>(methodPath);
fullClassPath.RemoveAt(methodPath.Length - 1);
Type targetClass = Assembly.GetExecutingAssembly().GetType(String.Join(".", fullClassPath));
var methodInfo = targetClass.GetMethod(methodName, new Type[0]);
if (methodInfo == null)
return value;
return methodInfo.Invoke(null, null);
}
catch (Exception)
{
return DependencyProperty.UnsetValue;
}
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotSupportedException("MethodToValueConverter can only be used for one way conversion.");
}
}
使用方法:Appで
<Window.Resources>
...
<local:StaticMethodToValueConverter x:Key="MethodToValueConverter"/>
...
</Window.Resources>
...
<ListView ItemsSource="{Binding Converter={StaticResource MethodToValueConverter}, ConverterParameter=Test.App.GetEmps}">
...
方法クラス:
namespace Test
{
public partial class App : Application
{
public static Employee[] GetEmps() {...}
}
}
私はこれをテストしました。 orksの場合は、フルクラスパスを使用することが重要ですが、App.GetEmps
だけでは機能しませんでした。
静的関数でない場合、静的変数から値を取ることは可能ですか?どうやって? – dinbrca
これは '{x:Static namespace:SomeClass.StaticProperty}'を使用することができます。 –
私はすでにそれを試みていますが、プログラムを起動するとバグ報告が出ます。 私はxmlns:local = "clr-namespace:Visual_Command_Line"を名前空間として追加しました。 と私のコード: –
dinbrca