13 lines
745 B
XML
13 lines
745 B
XML
<UserControl x:Class="CtrEditor.ObjetosSim.UserControls.OSComboBox"
|
|
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">
|
|
<Grid>
|
|
<ComboBox x:Name="comboBox"
|
|
ItemsSource="{Binding FilteredObjetosSimulables, RelativeSource={RelativeSource AncestorType=UserControl}}"
|
|
DisplayMemberPath="Nombre"
|
|
SelectedItem="{Binding SelectedObject, RelativeSource={RelativeSource AncestorType=UserControl}, Mode=TwoWay}" />
|
|
</Grid>
|
|
</UserControl>
|