すべてのクラスを見ないと、何が問題なのかを推測するのは困難です。あなたのコードがどのように見えるかについての私の解釈は次のとおりです。
Xaml:
<Window x:Class="WpfApplication4.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525" Name="UI">
<Grid >
<ComboBox ItemsSource="{Binding ElementName=UI, Path=AllStates}"
DisplayMemberPath="Index"
SelectedValuePath="Index"
SelectedValue="{Binding ElementName=UI, Path=OneArrow}"
Height="21" HorizontalAlignment="Left" Margin="80,82,0,0" Name="comboBox1" VerticalAlignment="Top" Width="152" />
</Grid>
</Window>
コードビハインド:
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
AllStates.Add(new State { Index = 1 });
AllStates.Add(new State { Index = 2 });
AllStates.Add(new State { Index = 3 });
AllStates.Add(new State { Index = 4 });
}
private ObservableCollection<State> allStates = new ObservableCollection<State>();
public ObservableCollection<State> AllStates
{
get { return allStates; }
set { allStates = value; }
}
private int oneArrow;
public int OneArrow
{
get { return oneArrow; }
set { oneArrow = value; }
}
}
public class State : INotifyPropertyChanged
{
private int index;
public int Index
{
get { return index; }
set { index = value; NotifyPropertyChanged("Index"); }
}
public event PropertyChangedEventHandler PropertyChanged;
public void NotifyPropertyChanged(string property)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(property));
}
}
}
これはうまくいくようですが、私が言ったように、あなたの State クラスがどのように見えるか、または OneArrow がどこにあるか (mainform または State) がわかりません。