or
public
partial
class
TestView
{
public
TestView()
{
InitializeComponent();
}
private
void
TestButton_OnClick(
object
sender, RoutedEventArgs e)
{
RadWindow.Alert(
new
DialogParameters
{
Content =
"Test"
,
ContentStyle = Resources[
"RadAlertStyle"
]
as
Style,
WindowStyle = Resources[
"RadWindowStyle"
]
as
Style
});
}
}
<
UserControl
x:Class
=
"SprintAnalyzer.Module.Presentation.Views.MiddleView"
xmlns:telerik
=
"http://schemas.telerik.com/2008/xaml/presentation"
xmlns:prism
=
"clr-namespace:Microsoft.Practices.Prism.Interactivity.InteractionRequest;assembly=Microsoft.Practices.Prism.Interactivity"
xmlns:i
=
"clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
xmlns:interactions
=
"clr-namespace:SprintAnalyzer.Module.Presentation.Interactions"
xmlns:Views
=
"clr-namespace:SprintAnalyzer.Module.Presentation.Views"
mc:Ignorable
=
"d"
d:DesignHeight
=
"300"
d:DesignWidth
=
"300"
>
<
Grid
x:Name
=
"LayoutRoot"
Background
=
"Lavender"
>
<
telerik:RadGridView
x:Name
=
"radGridView"
AutoGenerateColumns
=
"True"
ItemsSource
=
"{Binding Path=AnalysisResults}"
>
<
telerik:RadGridView.Columns
>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding Result}"
Header
=
"Result"
/>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding Category}"
Header
=
"Category"
/>
</
telerik:RadGridView.Columns
>
</
telerik:RadGridView
>
</
Grid
>
</
UserControl
>
xmlns:telerik
=
"http://schemas.telerik.com/2008/xaml/presentation"
my project already has a reference to the Telerik.Windows.Code, Telerik.Windows.Controls.GridView and Telerik.Windows.Controls.Input. using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Input;
using Microsoft.Practices.Prism.Commands;
using Microsoft.Practices.Prism.Events;
using SprintAnalyzer.Common;
using SprintAnalyzer.Common.Service;
using SprintAnalyzer.Module.Presentation.Models;
using SprintAnalyzer.Module.Presentation.Requests;
using SprintAnalyzer.RulesEngine;
using SprintAnalyzer.Common.Events;
namespace SprintAnalyzer.Module.Presentation.ViewModels
{
public class MiddleViewModel : ViewModelBase
{
private readonly IEventAggregator _eventAggregator;
private ICommand _button;
public string Output { get; private set; }
public ICommand OnClick
{
get { return _button; }
set
{
_button = value;
RaisePropertyChangedEvent("OnClick");
}
}
public MiddleViewModel(IApplicationContextService contextService, IEventAggregator eventAggregator)
{
this._contextService = contextService;
this._eventAggregator = eventAggregator;
this.OnClick = new DelegateCommand(this.Button_Clicked);
_eventAggregator.GetEvent<
AnalysisRunTrigger
>().Subscribe(ExecuteAnalysisRunTrigger, ThreadOption.BackgroundThread);
_eventAggregator.GetEvent<
AnalysisResultEvent
>().Subscribe(OnAnalysisRunResult, ThreadOption.UIThread);
_eventAggregator.GetEvent<
ExceptionRaisedEvent
>().Subscribe(OnExceptionRaised,
ThreadOption.UIThread);
this.AnalysisResults = new ObservableCollection<
AnalysisResult
>();
}
private void OnExceptionRaised(ExceptionDetail obj)
{
// Removed for now
}
private void OnAnalysisRunResult(AnalysisResult analysisResult)
{
AnalysisResults.Add(analysisResult);
}
private static Person CreatePerson()
{
// Removed for now
}
private void SetPeopleExecute()
{
// Removed for now
}
private void GetPersonCallback(Person p)
{
// Removed for now
}
private void CancelCallback()
{
// Removed for now
}
private ObservableCollection<
AnalysisResult
> _analysisResults;
public ObservableCollection<
AnalysisResult
> AnalysisResults
{
get
{
return _analysisResults;
}
set
{
_analysisResults = value;
RaisePropertyChangedEvent("AnalysisResults");
}
}
private void ExecuteAnalysisRunTrigger(string triggerState)
{
try
{
switch (triggerState)
{
case "StartAnalyzis":
rulesFactory.Execute();
break;
}
}
catch (Exception ex)
{
_eventAggregator.GetEvent<
ExceptionRaisedEvent
>().Publish(new ExceptionDetail() { Message = ex.Message });
}
}
private string _message;
private readonly IApplicationContextService _contextService;
public string Message
{
get { return _message; }
set
{
_message = value;
RaisePropertyChangedEvent("Message");
}
}
private void Button_Clicked()
{
//throw new NotImplementedException();
}
}
}
IsDragPreviewEnabled="True"
Telerik.Windows.Documents.Spreadsheet.Model.Worksheet sheet; sheet.Shapes ?
Telerik.Windows.Controls.RadSpreadsheet r; r.ActiveWorksheet.Shapes ?