public class Emp
{
public string Id { get; set; }
}
I declared the class like this, but property i didnt set. I set the dependency property for textblock
public static readonly DependencyProperty LabelProperty
= DependencyProperty.Register("TextBlock", typeof(string), typeof(WindowsPhoneControl1), new PropertyMetadata(new PropertyChangedCallback(LabelChanged)));
public string List
{
get { return (string)GetValue(LabelProperty); }
set { SetValue(LabelProperty, value); }
}
|
|
||||
|
|
|
This is perhaps not the answer, but there is something fundamentally wrong with your code. You bind your ListBox's In order to make it work with binding, there has to be a property When you add elements to the data-bound ListBox, you don't add them to the
Bind like this:
Or like below
and set DataContext, perhaps in code:
|
|||||||||||
|