Telerik Forums
UI for WPF Forum
1 answer
109 views
Hi,
    I just saw WPF Demo, nice work! By the way, I like the transitions when you click on navigation bar. I am new to WPF, I tried to look into code couldnt figure out how it is done. is there any way you can publish simple code here ? Do Telerik have plan to have transitions in Winforms too?

Thank you
Dwight
Telerik team
 answered on 08 May 2009
9 answers
211 views
Hi!

After upgrading to the latest release, I no longer receive updates after cells/rows have been edited.

I have attached a small example which I believe would work under last version (can't verify this since I have uninstalled it) but not under Q1.

Is there another way to hook up the events, or some other way to detect changes?

Thanks!

<Window x:Class="GraphTest.Window2" 
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
    Title="Window2" Height="300" Width="300" Loaded="Window_Loaded">  
    <Grid> 
        <telerik:RadGridView  AutoGenerateColumns="True" telerik:GridViewCell.EditEnded="gridview_EditEnded" telerik:GridViewRow.EditEnded="gridview_RowEditEnded" x:Name="gridview"  Grid.Column="0" Grid.Row="0" > 
        </telerik:RadGridView> 
    </Grid> 
</Window> 
 
using System.Windows;  
using System.Collections.ObjectModel;  
 
namespace GraphTest  
{  
    /// <summary>  
    /// Interaction logic for Window2.xaml  
    /// </summary>  
    ///   
 
    public partial class Window2 : Window  
    {  
        public Window2()  
        {  
            InitializeComponent();  
        }  
 
 
        private void Window_Loaded(object sender, RoutedEventArgs e)  
        {  
            gridview.ItemsSource = new TestList();  
        }  
 
        private void gridview_RowEditEnded(object sender, Telerik.Windows.Controls.GridView.Rows.RecordRoutedEventArgs e)  
        {  
            // Never gets called  
            MessageBox.Show("Row edit");  
        }  
 
        private void gridview_EditEnded(object sender, Telerik.Windows.Controls.GridView.Cells.CellRoutedEventArgs e)  
        {  
            // Never gets called  
            MessageBox.Show("Cell edit");  
        }  
 
    }  
 
    public class TestDataEntry  
    {  
        public int id { getset; }  
        public string value { getset; }  
    }  
 
    public class TestList : ObservableCollection<TestDataEntry>  
    {  
        public TestList()  
        {  
 
            Add(new TestDataEntry() { id = 1, value = "something" });  
            Add(new TestDataEntry() { id = 2, value = "something else" });  
        }  
 
    }  
}  
 


Nedyalko Nikolov
Telerik team
 answered on 07 May 2009
3 answers
101 views
I've got an application that updates the display every 5 mins or so and today I received this exception after it had been running for a couple hours.  I'm not using the tool tip at all so I just thought I'd make you aware of it.  The charts being shown are all 2D (1 pie, 1 bar and 2 line charts) and don't implement any user interactive behaviour.

System.NullReferenceException: Object reference not set to an instance of an object.
   at Telerik.Windows.Controls.Charting.BaseChartItem.get_ItemToolTipTimer()
   at Telerik.Windows.Controls.Charting.BaseChartItem.HideToolTip()
   at Telerik.Windows.Controls.Charting.BaseChartItem.BaseChartItemMouseLeave(Object sender, MouseEventArgs e)
   at System.Windows.Input.MouseEventArgs.InvokeEventHandler(Delegate genericHandler, Object genericTarget)
   at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
   at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs)
   at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
   at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
   at System.Windows.UIElement.RaiseEvent(RoutedEventArgs e)
   at System.Windows.MouseOverProperty.FireNotifications(UIElement uie, ContentElement ce, UIElement3D uie3D, Boolean oldValue)
   at System.Windows.ReverseInheritProperty.FirePropertyChangeInAncestry(DependencyObject element, Boolean oldValue, DeferredElementTreeState treeState)
   at System.Windows.ReverseInheritProperty.FirePropertyChangeInAncestry(DependencyObject element, Boolean oldValue, DeferredElementTreeState treeState)
   at System.Windows.ReverseInheritProperty.FirePropertyChangeInAncestry(DependencyObject element, Boolean oldValue, DeferredElementTreeState treeState)
   at System.Windows.ReverseInheritProperty.FirePropertyChangeInAncestry(DependencyObject element, Boolean oldValue, DeferredElementTreeState treeState)
   at System.Windows.ReverseInheritProperty.FirePropertyChangeInAncestry(DependencyObject element, Boolean oldValue, DeferredElementTreeState treeState)
   at System.Windows.ReverseInheritProperty.OnOriginValueChanged(DependencyObject oldOrigin, DependencyObject newOrigin, DeferredElementTreeState& oldTreeState)
   at System.Windows.Input.MouseDevice.ChangeMouseOver(IInputElement mouseOver, Int32 timestamp)
   at System.Windows.Input.MouseDevice.PreNotifyInput(Object sender, NotifyInputEventArgs e)
   at System.Windows.Input.InputManager.ProcessStagingArea()
   at System.Windows.Input.InputManager.ProcessInput(InputEventArgs input)
   at System.Windows.Input.MouseDevice.Synchronize()
   at System.Windows.Input.MouseDevice.OnHitTestInvalidatedAsync(Object sender, EventArgs e)
   at System.Windows.Input.InputManager.HitTestInvalidatedAsyncCallback(Object arg)
   at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Boolean isSingleParameter)
   at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler)
 



Vladimir Milev
Telerik team
 answered on 07 May 2009
2 answers
151 views
I've got 3 charts in my app. When I don't specify a series.Definition, it works great. When I do, I find that it locks up my app if I call DataSeries.Clear() or if I try to replace a data series. I found a kludgey work-around by calling DataSeries.Reset(), then re-adding the data series, however, I'm seeing a lot of overhead with this method.

When I tried to create my DataSeries on a background thread, then call Dispatcher.BeginInvoke() to update the graph on the UI, I'm getting, "The calling thread cannot access this object because a different thread owns it." If I remove the series.Defintion and have the graph draw as a bar graph instead of a line graph, there are no problems whatsoever.

I'm supposed to be showing this at a trade show tomorrow and I'm stuck. It appears that when I specify a LineSeriesDefinition, a new thread internal to the control is introduced into the equation and it's wreaking havoc. Help!

Below is some of the code.

StartUpdatingCharts() is called from a timer:

protected void StartUpdatingCharts(object dummy)

{

    foreach (object currentGraph in ActiveGraphs)

    {

        Thread t = new Thread(UpdateChartInBackground);

        t.Start(currentGraph);

    }

}


public void UpdateChartInBackground(Object threadContext)

{

    GraphControl currentGraph = threadContext as GraphControl;

    FillChartWithData(currentGraph);

}




FillChartWithData() is called from a background thread:

protected override void FillChartWithData(GraphControl graphControl)

{

    Dictionary<string, double> returnValues = Msi.GetReservoirData(graphControl.Arguments);

    DataSeries series = new DataSeries();

    series.Definition.ShowItemLabels = false;

    LineSeriesDefinition definition = new LineSeriesDefinition();

    definition.ShowItemLabels = false;

    definition.ShowPointMarks = false;

    //series.Definition = definition;  //THIS IS THE LINE THAT CAUSES ALL OF THE PROBLEMS!

 


    foreach (string sectionName in returnValues.Keys)

    {

        series.Add(new DataPoint(returnValues[sectionName]));

    }


    ChartArea
chartArea = graphControl.RadChart.DefaultView.ChartArea;

    chartArea.Dispatcher.BeginInvoke(new UpdateChart(BindDataToChart), chartArea, series);

}

 


private
delegate void UpdateChart(ChartArea chartArea, DataSeries series);


private static void BindDataToChart(ChartArea chartArea, DataSeries series)

{

 

    chartArea.DataSeries.Clear();

    chartArea.DataSeries.Add(series);

}

 

 

Mike
Top achievements
Rank 1
 answered on 06 May 2009
5 answers
180 views
Hello,

I would need a 3D surface graph, is it planned ?

Thanks
Mike
Top achievements
Rank 1
 answered on 06 May 2009
1 answer
69 views
When you create the radgrid on the fly and view it to the user you cannot drag any of the columns to group by (it doesnt let you).

Example:

Telerik.Windows.Controls.

RadGridView grid = new Telerik.Windows.Controls.RadGridView();

 

grid.ItemsSource = e.Result;

grid.IsReadOnly =

true;

 

grid.SelectionChanged +=

new EventHandler<Telerik.Windows.Controls.SelectionChangeEventArgs>(grid_SelectionChanged);

 

grid.CanUserSortColumns =

true;

 

grid.CanUserReorderColumns =

true;

 

 

 

Telerik.Windows.Controls.

RadWindow window = new Telerik.Windows.Controls.RadWindow();

 

window.Header =

"Product Listing";

 

window.Content =

null;

 

window.Content = grid;

window.ShowDialog();

window.Closed +=

new EventHandler<Telerik.Windows.Controls.WindowClosedEventArgs>(window_Closed);

In this example the window's content contains the grid that was pieced together at runtime but the user cannot group by any of the columns.

Is this a bug or am I doing something wrong here?

Thanks

 

Stefan Dobrev
Telerik team
 answered on 06 May 2009
3 answers
432 views
How can I hide the row header with the week number?
Miroslav
Telerik team
 answered on 06 May 2009
9 answers
349 views

Hi,

I have a grid that i am populating Programmatically. I create the Columns and add them in code. I have changed the edit type of one of the columns to use a combo box. Everything works cool and the grid loads and the combo box on the cell is populated. The problem comes in when selecting a value in the combobox. That selected value updates not only the current cell, butt all cells of the column in the other rows.

P.S.

It seems like it updates all cell with a similar value before the change.

If anybody can help with this i would be every gratefull. I have been trying to sort this problem out for the last week. 

Below is the code in my app. 

    DataGridResults.AutoGenerateColumns = false;

            GridViewDataColumn columnID = new GridViewDataColumn();

            columnID.DataType = typeof(string);

            columnID.UniqueName = "ID";

            columnID.DataMemberPath = "ID";

            columnID.HeaderText = "ID";

            columnID.IsVisible = false;

            GridViewDataColumn columnBarcode = new GridViewDataColumn();

            columnBarcode.DataType = typeof(string);

            columnBarcode.UniqueName = "Barcode";

            columnBarcode.DataMemberPath = "Barcode";

            columnBarcode.HeaderText = "Barcode";

    GridViewDataColumn columnStatus_ID = new GridViewDataColumn();

            columnStatus_ID.DataType = typeof(string);

            columnStatus_ID.UniqueName = "Status";

            columnStatus_ID.DataMemberPath = "Status.Name";

            columnStatus_ID.HeaderText = "Status";

            columnStatus_ID.Width = new System.Windows.GridLength(200);

      DataGridResults.Columns.Add(columnID);

            DataGridResults.Columns.Add(columnBarcode);

            DataGridResults.Columns.Add(columnName);

    DataGridResults.Columns.Add(columnStatus_ID);

            //Status Combo and Column

            ComboBoxEditorSettings comboBoxEditorSettings = new ComboBoxEditorSettings();

            Granite.Objects.Status _stat = new Granite.Objects.Status();

            comboBoxEditorSettings.ItemsSource = _stat.GetAll(Granite.Objects.AppliesTo.LOCATION);

            comboBoxEditorSettings.DisplayMemberPath = "Name";

            comboBoxEditorSettings.SelectedValuePath = "Name";

            ((GridViewDataColumn)DataGridResults.Columns["Status"]).EditorSettings = comboBoxEditorSettings;


Pavel Pavlov
Telerik team
 answered on 05 May 2009
2 answers
72 views

I am trying to figure out why I have a few bugs in using the WPF grid. I am open to the possibility that i have an old version of the GridView but since I did download the trail components fairly recently (within the last 4 weeks) im hoping im not too out-of-date.

Here are my three issues that need immediate attention:

Bug: Column Sorting

We have a bug that if we click to sort a column, click again to sort the other way, then click again to reset, it will break sort. Clicking after that will NOT sort anymore. It does nothing!

In your demo that we downloaded we also see this in the following sample of this bug, so we don’t think it sour code:

Populating with Data > Data Sources > Property Path

Online though, this works, so is this a bug that has been fixed and we simply need to get updated components?

Bug: Binding, then Rebinding

I have an application with a BackgroundWorker class that does some work, puts together a custom collection in a LIST<> and in the Worker completed method binds it to the grid. This works fine, but once i run the worker again, the new set of data is not visible. My original content vanishes, grid scrollbars change, but i dont see anything.

The code is VERY simple, MyGrid.Itemsource = e.Results

i've tried adding a .rebind and even setting Itemsource to NULL before assigning the new results, nothing fixes this issue.

I switched to use a LISTBOX standard .NET control instead and now things work perfectly using the same exact code.

Bug: Missing scrollbars

We have a large example that i simply am not allowed to post in full here, but it seems that for whatever reason us NOT auto generating columns and instead creating them manually is not turning on the scrollbars.

We generate the columns in code and add them to the grid.

I made sure its an issue with your control and not a XAML layout problem by putting a border around the grid that shows perfectly with right/bottom ending where I expected it to end visually, but still no scrollbars from your control that clearly has data in both directions that is not visible.

I can press keydown and go off screen!

Next Steps

For next steps and in general can you tell me how i can check if we have the latest build? Is there hot fixes we can apply?

I know we are still in "trial" mode but we need to finish this proof of concept before the work order can go ahead purchasing your control suite. Please help me fix my issues so i can help get you this sale.

Milan
Telerik team
 answered on 05 May 2009
1 answer
94 views
Hi,
I found a bug in your chart control, mainly when I set DataSeries with only 1 element and another with many, I get errors:

   w System.TimeSpan.Interval(Double value, Int32 scale) 
   w System.TimeSpan.FromSeconds(Double value) 
   w Telerik.Windows.Controls.Charting.DelayConverter.CalculateItemDelayBasedOnTotalDuration() w c:\Builds\WPF_Scrum\Charting_CI_Build\Sources\Development\Charting\Telerik.Windows.Controls.Charting\Chart\Animations\DelayConverter.cs:wiersz 87 

It looks like you divide by zero and then try to use it in TimeSpan.FromSeconds method.


Complete stacktrace:
   w System.TimeSpan.Interval(Double value, Int32 scale) 
   w System.TimeSpan.FromSeconds(Double value) 
   w Telerik.Windows.Controls.Charting.DelayConverter.CalculateItemDelayBasedOnTotalDuration() w c:\Builds\WPF_Scrum\Charting_CI_Build\Sources\Development\Charting\Telerik.Windows.Controls.Charting\Chart\Animations\DelayConverter.cs:wiersz 87 
   w Telerik.Windows.Controls.Charting.DelayConverter.CalculateValue(Double[] delayCoefficients) w c:\Builds\WPF_Scrum\Charting_CI_Build\Sources\Development\Charting\Telerik.Windows.Controls.Charting\Chart\Animations\DelayConverter.cs:wiersz 47 
   w Telerik.Windows.Controls.Charting.BaseAnimationConverter.Convert(Object value, Type targetType, Object parameter, CultureInfo culture) w c:\Builds\WPF_Scrum\Charting_CI_Build\Sources\Development\Charting\Telerik.Windows.Controls.Charting\Chart\Animations\BaseAnimationConverter.cs:wiersz 88 
   w Telerik.Windows.Controls.Charting.StaticConverter`2.Convert(Object value, Object parameter, CultureInfo culture) w c:\Builds\WPF_Scrum\Charting_CI_Build\Sources\Development\Charting\Telerik.Windows.Controls.Charting\Chart\Converters\StaticConverter.cs:wiersz 12 
   w Telerik.Windows.Controls.Charting.StaticConverter`2.Convert(Object value, Object parameter) w c:\Builds\WPF_Scrum\Charting_CI_Build\Sources\Development\Charting\Telerik.Windows.Controls.Charting\Chart\Converters\StaticConverter.cs:wiersz 22 
   w Telerik.Windows.Controls.Charting.BaseChartItem.ConfigureAnimationSettings() w c:\Builds\WPF_Scrum\Charting_CI_Build\Sources\Development\Charting\Telerik.Windows.Controls.Charting\Chart\Base\BaseChartItem.cs:wiersz 440 
   w Telerik.Windows.Controls.Charting.BaseChartItem.SetAnimationSettings() w c:\Builds\WPF_Scrum\Charting_CI_Build\Sources\Development\Charting\Telerik.Windows.Controls.Charting\Chart\Base\BaseChartItem.cs:wiersz 775 
   w Telerik.Windows.Controls.Charting.BaseChartItem.OnApplyTemplate() w c:\Builds\WPF_Scrum\Charting_CI_Build\Sources\Development\Charting\Telerik.Windows.Controls.Charting\Chart\Base\BaseChartItem.cs:wiersz 377 
   w Telerik.Windows.Controls.Charting.BaseLabelChartItem.OnApplyTemplate() w c:\Builds\WPF_Scrum\Charting_CI_Build\Sources\Development\Charting\Telerik.Windows.Controls.Charting\Chart\Base\BaseLabelChartItem.cs:wiersz 164 
   w Telerik.Windows.Controls.Charting.BasePointMarkChartItem.OnApplyTemplate() w c:\Builds\WPF_Scrum\Charting_CI_Build\Sources\Development\Charting\Telerik.Windows.Controls.Charting\Chart\Base\BasePointMarkChartItem.cs:wiersz 359 
   w System.Windows.FrameworkElement.ApplyTemplate() 
   w System.Windows.FrameworkElement.MeasureCore(Size availableSize) 
   w System.Windows.UIElement.Measure(Size availableSize) 
   w Telerik.Windows.Controls.Charting.LinearSeriesPanel.MeasureOverride(Size availableSize) w c:\Builds\WPF_Scrum\Charting_CI_Build\Sources\Development\Charting\Telerik.Windows.Controls.Charting\Chart\ChartArea\Series\LinearSeriesPanel.cs:wiersz 139 
   w System.Windows.FrameworkElement.MeasureCore(Size availableSize) 
   w System.Windows.UIElement.Measure(Size availableSize) 
   w MS.Internal.Helper.MeasureElementWithSingleChild(UIElement element, Size constraint) 
   w System.Windows.Controls.ItemsPresenter.MeasureOverride(Size constraint) 
   w System.Windows.FrameworkElement.MeasureCore(Size availableSize) 
   w System.Windows.UIElement.Measure(Size availableSize) 
   w System.Windows.Controls.Control.MeasureOverride(Size constraint) 
   w System.Windows.FrameworkElement.MeasureCore(Size availableSize) 
   w System.Windows.UIElement.Measure(Size availableSize) 
   w Telerik.Windows.Controls.Charting.ChartPanel.MeasureOverride(Size availableSize) w c:\Builds\WPF_Scrum\Charting_CI_Build\Sources\Development\Charting\Telerik.Windows.Controls.Charting\Chart\ChartArea\ChartPanel.cs:wiersz 39 
   w System.Windows.FrameworkElement.MeasureCore(Size availableSize) 
   w System.Windows.UIElement.Measure(Size availableSize) 
   w MS.Internal.Helper.MeasureElementWithSingleChild(UIElement element, Size constraint) 
   w System.Windows.Controls.ItemsPresenter.MeasureOverride(Size constraint) 
   w System.Windows.FrameworkElement.MeasureCore(Size availableSize) 
   w System.Windows.UIElement.Measure(Size availableSize) 
   w Telerik.Windows.Controls.Charting.ClipPanel.MeasureOverride(Size availableSize) w c:\Builds\WPF_Scrum\Charting_CI_Build\Sources\Development\Charting\Telerik.Windows.Controls.Charting\Chart\ChartArea\ClipPanel.cs:wiersz 30 
   w System.Windows.FrameworkElement.MeasureCore(Size availableSize) 
   w System.Windows.UIElement.Measure(Size availableSize) 
   w Telerik.Windows.Controls.Charting.PlotAreaPanel.MeasureOverride(Size availableSize) w c:\Builds\WPF_Scrum\Charting_CI_Build\Sources\Development\Charting\Telerik.Windows.Controls.Charting\Chart\ChartArea\PlotAreaPanel.cs:wiersz 63 
   w System.Windows.FrameworkElement.MeasureCore(Size availableSize) 
   w System.Windows.UIElement.Measure(Size availableSize) 
   w System.Windows.Controls.Grid.MeasureCell(Int32 cell, Boolean forceInfinityV) 
   w System.Windows.Controls.Grid.MeasureCellsGroup(Int32 cellsHead, Size referenceSize, Boolean ignoreDesiredSizeU, Boolean forceInfinityV) 
   w System.Windows.Controls.Grid.MeasureOverride(Size constraint) 
   w System.Windows.FrameworkElement.MeasureCore(Size availableSize) 
   w System.Windows.UIElement.Measure(Size availableSize) 
   w System.Windows.ContextLayoutManager.UpdateLayout() 
   w System.Windows.ContextLayoutManager.UpdateLayoutCallback(Object arg) 
   w System.Windows.Media.MediaContext.InvokeOnRenderCallback.DoWork() 
   w System.Windows.Media.MediaContext.FireInvokeOnRenderCallbacks() 
   w System.Windows.Media.MediaContext.RenderMessageHandlerCore(Object resizedCompositionTarget) 
   w System.Windows.Media.MediaContext.RenderMessageHandler(Object resizedCompositionTarget) 
   w System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Boolean isSingleParameter) 
   w System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler) 
   w System.Windows.Threading.Dispatcher.WrappedInvoke(Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler) 
   w System.Windows.Threading.DispatcherOperation.InvokeImpl() 
   w System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(Object state) 
   w System.Threading.ExecutionContext.runTryCode(Object userData) 
   w System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData) 
   w System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) 
   w System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) 
   w System.Windows.Threading.DispatcherOperation.Invoke() 
   w System.Windows.Threading.Dispatcher.ProcessQueue() 
   w System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled) 
   w MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled) 
   w MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o) 
   w System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Boolean isSingleParameter) 
   w System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler) 
   w System.Windows.Threading.Dispatcher.WrappedInvoke(Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler) 
   w System.Windows.Threading.Dispatcher.InvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Boolean isSingleParameter) 
   w System.Windows.Threading.Dispatcher.Invoke(DispatcherPriority priority, Delegate method, Object arg) 
   w MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam) 
   w MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg) 
   w System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame) 
   w System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame) 
   w System.Windows.Threading.Dispatcher.Run() 
   w System.Windows.Application.RunDispatcher(Object ignore) 
   w System.Windows.Application.RunInternal(Window window) 
   w System.Windows.Application.Run(Window window) 
   w System.Windows.Application.Run() 
   w RHEAClient.App.Main() w F:\RHEAClient\obj\Release\App.g.cs:wiersz 0 
   w System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args) 
   w System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) 
   w Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() 
   w System.Threading.ThreadHelper.ThreadStart_Context(Object state) 
   w System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) 
   w System.Threading.ThreadHelper.ThreadStart() 

Regards,
Jacek Ciereszko



Ves
Telerik team
 answered on 05 May 2009
Narrow your results
Selected tags
Tags
GridView
General Discussions
Chart
RichTextBox
Docking
ScheduleView
ChartView
TreeView
Diagram
Map
ComboBox
TreeListView
Window
RibbonView and RibbonWindow
PropertyGrid
DragAndDrop
TabControl
TileView
Carousel
DataForm
PDFViewer
MaskedInput (Numeric, DateTime, Text, Currency)
AutoCompleteBox
DatePicker
Buttons
ListBox
GanttView
PivotGrid
Spreadsheet
Gauges
NumericUpDown
PanelBar
DateTimePicker
DataFilter
Menu
ContextMenu
TimeLine
Calendar
Installer and Visual Studio Extensions
ImageEditor
BusyIndicator
Expander
Slider
TileList
PersistenceFramework
DataPager
Styling
TimeBar
OutlookBar
TransitionControl
Book
FileDialogs
ToolBar
ColorPicker
TimePicker
SyntaxEditor
MultiColumnComboBox
VirtualGrid
Wizard
ExpressionEditor
NavigationView (Hamburger Menu)
DesktopAlert
WatermarkTextBox
BarCode
SpellChecker
DataServiceDataSource
EntityFrameworkDataSource
RadialMenu
ChartView3D
Data Virtualization
BreadCrumb
ProgressBar
Sparkline
LayoutControl
TabbedWindow
ToolTip
CloudUpload
ColorEditor
TreeMap and PivotMap
EntityFrameworkCoreDataSource (.Net Core)
HeatMap
Chat (Conversational UI)
VirtualizingWrapPanel
Calculator
NotifyIcon
TaskBoard
TimeSpanPicker
BulletGraph
Licensing
WebCam
CardView
DataBar
FilePathPicker
PasswordBox
Rating
SplashScreen
Accessibility
Callout
CollectionNavigator
Localization
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?