我想在组合框中显示“Select Team ....”
在WPF中像这样。
Setting default text for a combo box
但是在sketchflow中。
我该怎么做?
由于
这是一个灯光项目。我的xaml读到:
<UserControl
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"
x:Class="SchoolsLoginScreens.Screen_2"
Width="640" Height="480">
<Grid x:Name="LayoutRoot" Background="White">
<ComboBox Height="61.256" Width="136.569" IsEditable="True" IsReadOnly="True" Text="-- Select Team --"/>
</Grid>
它说IsEditable没有二传手。但这似乎在WPF项目中起作用,就像上面的例子一样。
答案 0 :(得分:0)
SketchFlow项目是WPF或SL项目(取决于您在创建项目时选择的内容),因此您应该为WPF / SL找到任何答案。
答案 1 :(得分:0)
我有同样的问题,发现this可以帮助我。基本上,您只需要在组合框中添加至少一个项目(右键单击,添加ComboBoxItem),然后在选择控件时查看公共属性,您将看到一个名为“SelectIndex”的字段,当前设置为 - 1。只需将其更改为0即可选择列表中的第一项。