gpt4 book ai didi

wpf - 将组合框的 ItemsSource 设置为整数数组?

转载 作者:行者123 更新时间:2023-12-04 19:34:18 27 4
gpt4 key购买 nike

将组合框的 ItemsSource 设置为整数数组?

最佳答案

<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib">
<Window.Resources>
<x:Array x:Key="Integers" Type="{x:Type sys:Int32}">
<sys:Int32>0</sys:Int32>
<sys:Int32>1</sys:Int32>
<sys:Int32>2</sys:Int32>
</x:Array>
</Window.Resources>
<ComboBox ItemsSource="{Binding Source={StaticResource Integers}}" />
</Window>

关于wpf - 将组合框的 ItemsSource 设置为整数数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1825480/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com