or
var radWindowViewModel =
new
MyViewModel();
var radWindow =
new
RadWindow
{
Width = 400,
Height = 150,
Content = ViewLocator.LocateForModelType(
typeof
(MyViewModel),
null
, radWindowViewModel)
};
radWindow.ShowDialog();
Content = ViewLocator.LocateForModel(radWindowViewModel,
null
,
null
)
WindowStyle = System.Windows.WindowStyle.None;
Topmost =
true
;
WindowState = System.Windows.WindowState.Maximized;
WindowChrome.SetWindowChrome(
this
,
null
);
Hi
I have seen your example grid animation at http://blogs.telerik.com/pavelpavlov/posts/10-05-20/displaying-live-streaming-data-with-radgridview-for-silverlight-and-wpf.aspx id it possible to achieve this from code to target user defined values. For example I have a grid that is updated on a timer event and would like to animate selected cells after this event occurs for different target columns where cells fall into a value range. A small example of targetting a grid cell would be appreciated.
Regards
Joe