在XAML中使用代码常量

时间:2010-11-22 09:43:25

标签: wpf xaml

我有这个XAML代码:

<ListBox DataContext="{Binding Tables[Suppliers]}" ItemsSource="{Binding}">
</ListBox>

在项目中,我有以下代码:

namespace Suppliers
{
    class DBServer
    {
        public const string TableSuppliers = "Suppliers";
    }

如何在XAML页面中使用Suppliers.DBServer.TableSuppliers而不是硬编码供应商:

{Binding Tables[ ??? ]} 

1 个答案:

答案 0 :(得分:1)

如果[]里面的内容是一个字符串,你可以随时使用常量 {x:静态c:Constants.X}