WPFとMVVMの新機能です。WpfでのデータバインディングMVVM
mysqlデータベースからObservableCollection
にデータを取得しようとしましたが、UIにバインドしています。
モデルレイヤーの最初のObservableCollection
にデータがありますが、ViewModelレイヤーにデータを送信できないため、何もUIにバインドされません。
class Databasecon
{
int i = 0;
// First Binding for the Database
public ObservableCollection<Operator> operators { get; private set; }
public Databasecon()
{
this.operators = new ObservableCollection<Operator>();
}
public void Datacon(string conn)
{
MySqlConnection con = null;
MySqlCommand com = null;
MySqlDataReader myreader = null;
int columnOrdinaloperatorname = -1;
con = new MySqlConnection(conn);
try
{
if (com == null)
{
com = new MySqlCommand("SELECT operator_name FROM operators", con);
com.Connection.Open();
myreader = com.ExecuteReader();
columnOrdinaloperatorname = myreader.GetOrdinal("operator_name");
while (myreader.Read())
{
this.operators.Add(new Operator() { operatorname = myreader.GetString(columnOrdinaloperatorname).ToString() });
i++;
}
}
MessageBox.Show(operators.Count.ToString());
}
catch (MySqlException ex)
{
MessageBox.Show(ex.ToString());
}
finally
{
if (myreader != null)
myreader.Close();
if (com != null)
{
if (com.Connection != null)
com.Connection.Close();
}
}
}
}
class Operator
{
public string operatorname { get ; set; }
}
class collect : INotifyPropertyChanged
{
private Databasecon databasecon = null;
public event PropertyChangedEventHandler PropertyChanged;
public ObservableCollection<Operator> operators
{
get
{
if (this.databasecon.operators != null)
{
return this.databasecon.operators;
}
else
{
return null;
}
}
set
{
this.operators = value; RaisePropertyChanged("operators");
}
}
private void RaisePropertyChanged(string propertyName)
{
var handler = this.PropertyChanged;
if (handler != null)
{
handler(this, new PropertyChangedEventArgs(propertyName));
}
}
public collect()
{
this.databasecon = new Databasecon();
}
}
XAMLコードは次のとおりです。
<Window.DataContext>
<vm:collect/>
</Window.DataContext>
<Grid>
<TextBlock Margin="459,51,-459,-51"><InlineUIContainer>
<TextBlock x:Name="textBlock" TextWrapping="Wrap" Text="{Binding Path=operators}" Width="198" FontSize="28" Height="66"/>
</InlineUIContainer></TextBlock>
<ListBox x:Name="listBox" HorizontalAlignment="Left" Height="102" Margin="115,240,0,0" VerticalAlignment="Top" Width="339" ItemsSource="{Binding operators}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<TextBlock >
<Run Text="{Binding operatorname}"></Run>
</TextBlock>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
誰もこれで私を助けることができますか?
あなたの答えをありがとう。あなたは私にどのように私はこのバインディングUIでICommandインターフェイスを使用してバインドを説明しないでください – Ahmad
私はあなたが何を意味するのかよく分かりません。 UIの読み込み時にあなたのリストを準備することを意味しますか? その場合は、collectコンストラクタのdatabasecon.Datacon( "[connection string]")への呼び出しを追加するだけです。 – Jonny
あなたの助けに感謝して今すぐ仕事です http://stackoverflow.com/questions/18593720/window-load-event-in-mvvm これは私が必要だったものです – Ahmad