You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SelectedItems 的集合为 public ObservableCollection SelectedItems { get; set; }
其中Info 为
public class Info : ViewModelBase
{
public string Name { get; set; } = string.Empty;
public string Age { get; set; }
}
编译时报错 Unable to resolve property or method of name 'Name' on type 'XamlX.TypeSystem.XamlPseudoType'. Line 33, position 20. 为什么呢?
The text was updated successfully, but these errors were encountered:
<u:MultiComboBox ItemsSource="{Binding Items}" SelectedItems="{Binding SelectedItems}">
<u:MultiComboBox.ItemTemplate>
</u:MultiComboBox.ItemTemplate>
<u:MultiComboBox.SelectedItemTemplate>
</u:MultiComboBox.SelectedItemTemplate>
</u:MultiComboBox>
SelectedItems 的集合为 public ObservableCollection SelectedItems { get; set; }
其中Info 为
public class Info : ViewModelBase
{
public string Name { get; set; } = string.Empty;
public string Age { get; set; }
}
编译时报错 Unable to resolve property or method of name 'Name' on type 'XamlX.TypeSystem.XamlPseudoType'. Line 33, position 20. 为什么呢?
The text was updated successfully, but these errors were encountered: