我在IronPython工作
我正在尝试将列表框项的前景绑定到方法
为了看看我创建一个简单的c#应用程序的正确方法 其中XAML看起来像这样
<Window x:Class="WpfTest.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525"
xmlns:local="clr-namespace:WpfTest">
<Window.Resources>
<local:SetForeground x:Key="SetForeground" />
<Style TargetType="ListBoxItem">
<Setter Property="Foreground" Value="Blue"/>
<Style.Triggers>
<Trigger Property="IsSelected" Value="true">
<Setter Property="Foreground" Value="{Binding Converter={StaticResource SetForeground}}"/>
</Trigger>
</Style.Triggers>
</Style>
</Window.Resources>
<Grid>
<ListBox x:Name="ListBox_Options" Margin="15,15,15,0" >
<ListBoxItem Content="Element 2"/>
<ListBoxItem Content="Element 3"/>
<ListBoxItem Content="Element 4"/>
<ListBoxItem Content="Element 5"/>
<ListBoxItem Content="Element 6"/>
</ListBox>
</Grid>
</Window>
我还创建了一个名为SetForeground的类,它看起来像这样
public sealed class SetForeground : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
return Brushes.Brown;
throw new NotImplementedException();
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
我激活了项目并且工作正常
现在我想在IronPython中做同样的解决方案,但我遇到了 在下面的XAML语句中写入什么命名空间的问题(在窗口标题中)
xmlns:local="clr-namespace:WpfTest"
你可以帮忙吗?
在将解决方案转换为IronPython时是否还需要进行其他调整?