2

herehereなど、定数文字列を持つクラスが必要です。しかし、コードだけでなく xaml でもこれらの値にバインドできるようにしたいと考えています。

<Window x:Class="Ccompany.Product.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:lex="http://wpflocalizeextension.codeplex.com"
        lex:ResxLocalizationProvider.DefaultAssembly="<-- would like to be able to insert the constant here -->"                
        >

提案された「定数クラス」ソリューションを xaml でもバインドする方法の例も教えてください。

注:投稿する前にさまざまなことを試し、定数をプロパティにラップしようとしましたが、それでも xaml にバインドできませんでした。

4

1 に答える 1

2

なぜこれだけではないのですか?:

{x:Static ns:TypeName.ConstValue}

これは、次のような定数値に対して機能します。

public class TypeName
{
    public const int ConstValue = 5;
}
于 2013-07-09T15:09:40.397 に答える