我有一个添加了代码隐藏的 ResourceDictionary 。
在 ResourceDictionary 我有一个组合框。我想将该组合框的 ItemsSource 绑定到代码隐藏中的列表。
如何设置绑定源以使其在代码隐藏中查找?
This one uses the code behind --------+
|
V
<ComboBox PreviewKeyDown="CustomItem_PreviewKeyDown"
ItemsSource="{Binding AllItems, Source={CodeBehind} />
^ ^
| |
But this one doesn't | because the source is not correct |
万一这很重要,这就是我的 ResourceDictionary 开头的样子:
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="MyProject.MyCodeBehindClass"
x:Name="ANameThatSeemsUselessHere">
关于如何将 ItemSource 绑定到ResourceDictionary 代码隐藏的任何想法?