Hi,
In my viewmodel I am trying to dynamically assign different Categories to my appointment objects, something like the following,
In my viewmodel I am trying to dynamically assign different Categories to my appointment objects, something like the following,
public override ICategory Category
{
get
{
return new Category { CategoryBrush = new SolidColorBrush(Color.FromArgb(0xFF, 0xDD, 0xFF, 0xFE)), CategoryName = "Birthday" };
}
}
What I have found is, when I try to drag the edge of the appointment block to change its start/end time, it is still draggable but when I release my mouse it goes back to the previous position.
Any idea why this is happening?
Thanks,
Justin