|
Your xaml code looks ok.
Try and have a look at the place where you are populating the model and make sure right values are being passed into the model attributes.
The funniest thing about this particular signature is that by the time you realise it doesn't say anything it's too late to stop reading it.
|
|
|
|
|
Hi,
I have Question about the use of Observable Collection? During reading about MVVM Pattern i read about the observable collection that it reflect the changes to the UI Automatically which is not possible in the List collection.But i really dont understand it what it exactly means in practical terms. I want a demo for the Difference between the List VS ObservableCollection Vs PropertyChangedEventHandler. I have read the document on your site but i am yet not clear about it? will you please help me?
|
|
|
|
|
The ObservableCollection implements the INotifyCollectionChanged interface, so it fires a CollectionChanged event whenever an element is added, removed, replaced, or moved.
The binding system knows how to react to objects that implement INotifyCollectionChanged and INotifyPropertyChanged... So when you bind to one of those, the binding system hooks the event and updates itself when it gets notified of a change.
The List class doesn't implement that interface.
|
|
|
|
|
Can u please explain me how the changes to the _studentList can reflect to UI with code?
|
|
|
|
|
I just explained it. The ObservableCollection fires a CollectionChanged event. The data binding system handles that event and triggers an update. That's it.
|
|
|
|
|
Sorry, but i am not getting what exactly i want.
Actually I am new to silverlight so i am not clear with it.
In the Given code (Populating a DataGrid in a Silverlight Application using MVVM)
it is not calling the PropertyChanged Event. Can u provide code which calls that event.
|
|
|
|
|
CollectionChanged, not PropertyChanged...
The ObservableCollection class fires the CollectionChanged event internally, whenever you add/remove/replace/move items.
The data binding system handles this event.
All of this happens inside the framework... You won't see the code for it... It's automatic.
|
|
|
|
|
There are two parts to binding that you are concerned with here. The first, as you are aware, is the use of ObservableCollection . This tells you that the collection has changed; in other words that items have been added or deleted in the collection. This does not tell you that an individual item has changed.
To capture notifications that an individual item has changed, you need to implement INotifyPropertyChanged in the class (or an ancestor of). Simplistically, when an item changes, the PropertyChanged event fires, and this tells the binding engine that an item needs to be updated in the UI. If you look at samples, you'll typically see a class called something like ViewModelBase. This class is the one that implements the property changed notification, saving you from having to update the code in lots and lots of locations. Here's a typical example of this class:
public abstract class ViewModelBase : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnChanged(string property)
{
var handler = PropertyChanged;
if (handler == null)
{
return;
}
handler(this, new PropertyChangedEventArgs(property));
}
} Now, you'll derive from this class and call OnChanged in your property setters. This would typically look something like this:
private string _passCode;
public string PassCode
{
get { return _passCode; }
set
{
if (_passCode == value) return;
_passCode = value;
OnChanged("PassCode");
}
} When the user changes a value in PassCode, the value is updated and then the change notification is raised which tells the binder to update only that named field (if you want to update all fields, you pass an empty string to OnChanged). There are a couple of things to note here - always test to see if the update value is the same as the value you already store, this prevents you updating something that hasn't changed; the name of the property that is raised must match the name of the property, so calling "Pa4sCode" would fail to update the value as it's not the name of the property (PassCode).
I hope that this makes sense to you. All too often people fall into the trap of assuming that ObservableCollection covers both sides. It's an easy mistake to make.
|
|
|
|
|
Hi,
Thanks.
I understaqnd it now.
I am new to Silverlight. But i am working on the project which is based on silverlight. This project is completed but i am trying to understand this.
Would you please suggest me some resources to learn silverlight as early as possible (Books ,Sights, etc.).
Thanks
Umesh Tayade
|
|
|
|
|
There are plenty of blogs about Silverlight, and several CPians maintain SL blogs. Probably the premier SL site though, is Jesse Liberty's site[^]. As far as books go, I'd recommend Laurent Bugnion's excellent Silverlight 4 Unleashed[^].
|
|
|
|
|
Hi Developer,
I am using one select All Button to select all row in Datgrid (CheckBox selection).
So how to Check CheckBox in Datagrid.
Regards
Nanda.
|
|
|
|
|
In the collection that you are binding to, you have a collection of items. Each item is an instance of an object that represents a single row. Add a property to this that represents whether or not it has been checked, make it raise the PropertyChanged event and bind your Checked to this. Finally, when the user clicks select all, simply iterate over the collection and set the checked property to true. With the wonder of data binding, the UI will also update.
|
|
|
|
|
Hi,
In my application, the user has to navigate through RadioButton's group using the keyboard
By default, the arrow keys are used to navigate and the space bar used to select the radio button.
I would like the 'select' key to be another keyboard key!
How should I please process to switch the key used for the button selection by the "A" key, for instance?
Thank you for any kind help!
|
|
|
|
|
You mean add a underscore (_) to the content?
If you do "Radio Button #_1", the 1 will be underlined and a user can hit Alt+1 to select the radio button.
|
|
|
|
|
Thanks for your reply!
No, that's not what I mean (sorry english isn't my mothertongue)
I mean, being able to select the radio button which has the focus, with the key "A" instead of the default "SPACE" key!
|
|
|
|
|
A quick and dirty way would be to use your own RadioButton-derived class that responds to the key press you want, something like:
public class MyRadioButton : RadioButton
{
protected override void OnKeyDown(KeyEventArgs e)
{
if (e.Key == Key.A)
OnClick();
else
base.OnKeyDown(e);
}
}
Mark Salsbery
Microsoft MVP - Visual C++
|
|
|
|
|
Dear All,
In my application i am using WPF data grid from wpftoolkit. Here in order to achieve one of my requirement i am about to find the parent of the data grid cell.
in my grid i am having an image in an template column.
<my:DataGridTemplateColumn Width="30" >
<my:DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<Image Name="imgCalendar" ToolTip="Select" Source="calendar2.jpg" Stretch="Fill" PreviewMouseUp="imgCalendar_PreviewMouseUp"></Image>
</DataTemplate>
</my:DataGridTemplateColumn.CellTemplate>
</my:DataGridTemplateColumn>
below is the imgCalendar_PreviewMouseUp event.
Microsoft.Windows.Controls.DataGridCell cell = sender as Microsoft.Windows.Controls.DataGridCell;
Microsoft.Windows.Controls.DataGrid dataGrid = FindVisualParent<Microsoft.Windows.Controls.DataGrid>(cell);
static T FindVisualParent<T>(UIElement element) where T : UIElement
{
UIElement parent = element;
while (parent != null)
{
T correctlyTyped = parent as T;
if (correctlyTyped != null)
return correctlyTyped;
parent = VisualTreeHelper.GetParent(parent) as UIElement;
}
return null;
}
So this is my code.
Now here when ever the grid fills , when i click the image for the first time i am not getting the parent.
But when i click once(i.e for the second time) i am getting the datagrid as parent. I don't know why its happening like this.
Please help me and thanks in advance.
|
|
|
|
|
The sender is an Image, right? So shouldn't that be something like this...
private void imgCalendar_PreviewMouseUp(object sender, MouseButtonEventArgs e)
{
Microsoft.Windows.Controls.DataGridCell cell = FindVisualParent<Microsoft.Windows.Controls.DataGridCell>(sender as Image);
Microsoft.Windows.Controls.DataGrid dataGrid = FindVisualParent<Microsoft.Windows.Controls.DataGrid>(cell);
}
If you just set the Name property on the DataGrid then you already have a DataGrid member variable of that name so I'm not sure why you need to do any of that to get a DataGrid reference...
Mark Salsbery
Microsoft MVP - Visual C++
modified on Tuesday, May 10, 2011 4:59 PM
|
|
|
|
|
Thanks Mark for your time and for reply.
I will check the method mentioned here.But the thing is same code is working on other window with the same data grid. I dont know why here.
I will try and get back to you.
|
|
|
|
|
I didn't just post a guess
I copied your code into Visual Studio and ran it in debugger and immediately saw your "sender as Microsoft.Windows.Controls.DataGridCell" return NULL.
Commented out that line and changed it to what I showed and it worked fine.
Maybe the other window that works has different code?
And why are you trying to find the DataGrid this way when you already have access to the DataGrid?
Mark Salsbery
Microsoft MVP - Visual C++
|
|
|
|
|
Hi,
I'm trying desperately to get the following working, with no success :
So I hope someone here can help me.
I have a application following the MVVM pattern.
A WPF datagrid should have all it's cells backgrounds set either to Yellow or White, depending on a property on the ViewModel.
If the property returns "Locked", all cells should be Yellow.
If the property returns "Editable", all cells should be White.
Here's my XAML:
<DataGrid x:Name="grdAnsprechpartner" Style="{Binding Path=StyleDataGrid}"
AutoGenerateColumns="False"
Height="auto" Width="756"
HorizontalAlignment="Left" VerticalAlignment="Top"
ItemsSource="{Binding Path=AktuellerDatensatz.Personen}" >
<DataGrid.CellStyle>
<Style TargetType="{x:Type DataGridCell}">
<Setter Property="Background" Value="{Binding Path=CellBackground}"/>
</Style>
</DataGrid.CellStyle>
...
The Property "CellBackground" looks like this:
Public Overridable Property CellBackground() As SolidColorBrush
Get
Return p_CellBackground
End Get
Set(ByVal value As SolidColorBrush)
If value.Equals(p_CellBackground) Then Return
p_CellBackground = value
OnPropertyChanged("CellBackground")
End Set
End Property
I'm setting myViewModel.CellBackground to - for example - Brushes.Yellow.
Nothing happens.
What am I doing wrong?
If I set the CellStyle's Background-property to a StaticResource, it works.
Kind regards,
Nico
|
|
|
|
|
Are you getting any binding errors? They won't pop up as exceptions, but if you look at the Output window in Visual Studio, any data binding issues should print a line there. That's usually your best way to determine whether your binding sources are correct.
|
|
|
|
|
Hi,
thanks a lot for your answer
I checked the output and there IS an error:
System.Windows.Data Error: 40 : BindingExpression path error: 'CellBackground' property not found on 'object' ''Person' (HashCode=51777710)'. BindingExpression:Path=CellBackground; DataItem='Person' (HashCode=51777710); target element is 'DataGridCell' (Name=''); target property is 'Background' (type 'Brush')
Now I see, the datagrid's ItemsSource is bound to an ObservableCollection of "Personen".
But I don't know how to get this solved.
How do I tell the CellStyle's binding, it should look for "CellBackground" on the ViewModel?
Regards,
Nico
|
|
|
|
|
If you want to bind to properties on the ViewModel, then your grid needs to be bound to the ViewModel. Each row of the grid is bound to one item in the ItemsSource, so that's where it's looking for "CellBackground"
|
|
|
|
|
I'm not sure I understand your answer, sorry.
The datagrid's ItemsSource is bound to the ViewModel (it is bound to a ViewModel's property of type ObservableCollection).
What I did now is:
<DataGrid.CellStyle>
<Style TargetType="{x:Type DataGridCell}">
<Setter Property="Foreground" Value="Black"/>
<Setter Property="Background"
Value="{Binding Path=DataContext.CellBackground, RelativeSource={RelativeSource FindAncestor, AncestorType=UserControl, AncestorLevel=1}}"/>
</Style>
</DataGrid.CellStyle>
This works, but I'm sure that's not the most elegant solution...
|
|
|
|