Telerik Forums
UI for WPF Forum
3 answers
116 views
Hi,

Is there a bug with the latest version of RadRichTextBox UI (2012.3.1017.4) where blank spaces at the end of a page continue to follow the same line rather than drop to the line beneath?

This behaviour is not experienced when typing text, only blank spaces using the space bar.

Please see my attached screenshots for a better example of what I'm referring to.

Thanks,

Rob
Robert
Top achievements
Rank 1
 answered on 28 Nov 2012
10 answers
249 views
Hello!   Using Q1 2012.

I'm trying to set default values for the period bindings and am having some difficulty with VisiblePeriodStart.  This guy just doesn't want to get set even though they are in the right order and two-way bound.  Suggestions?

View:
<telerik:RadTimeBar Height="150" Margin="40,20,40,40" telerik:StyleManager.Theme="Windows7"
                            PeriodStart="{Binding PeriodStart, Mode=TwoWay}"
                            PeriodEnd="{Binding PeriodEnd, Mode=TwoWay}"
                            VisiblePeriodStart="{Binding VisibleStart, Mode=TwoWay}"
                            VisiblePeriodEnd="{Binding VisibleEnd, Mode=TwoWay}"
                            SelectionStart="{Binding SelectionStart, Mode=TwoWay}"
                            SelectionEnd="{Binding SelectionEnd, Mode=TwoWay}"
                            >
 
            <telerik:RadTimeBar.Intervals>
                <telerik:YearInterval />
                <telerik:MonthInterval />
                <telerik:DayInterval />
            </telerik:RadTimeBar.Intervals>
 
            <telerik:RadAreaSparkline ItemsSource="{Binding TimeBarData}" XValuePath="Date" YValuePath="Total" telerik:StyleManager.Theme="Windows7" AutoRange="False" />
        </telerik:RadTimeBar>

ViewModel:
public class ViewModel
    {
        public ObservableCollection<DetailTimeBarModel> TimeBarData { get; private set; }
 
        public DateTime PeriodStart { get; set; }
        public DateTime PeriodEnd { get; set; }
        public DateTime VisibleStart { get; set; }
        public DateTime VisibleEnd { get; set; }
        public DateTime SelectionStart { get; set; }
        public DateTime SelectionEnd { get; set; }
 
        public ViewModel()
        {
            TimeBarData = new ObservableCollection<DetailTimeBarModel>
                              {
                                  new DetailTimeBarModel {Date = DateTime.Now.AddDays(-20), Total = 5},
                                  new DetailTimeBarModel {Date = DateTime.Now.AddDays(-18), Total = 1},
                                  new DetailTimeBarModel {Date = DateTime.Now.AddDays(-16), Total = 3},
                                  new DetailTimeBarModel {Date = DateTime.Now.AddDays(-14), Total = 7},
                                  new DetailTimeBarModel {Date = DateTime.Now.AddDays(-12), Total = 6},
                                  new DetailTimeBarModel {Date = DateTime.Now.AddDays(-10), Total = 3},
                                  new DetailTimeBarModel {Date = DateTime.Now.AddDays(-8), Total = 12},
                                  new DetailTimeBarModel {Date = DateTime.Now.AddDays(-6), Total = 6},
                                  new DetailTimeBarModel {Date = DateTime.Now.AddDays(-4), Total = 3},
                                  new DetailTimeBarModel {Date = DateTime.Now.AddDays(-2), Total = 3},
                                  new DetailTimeBarModel {Date = DateTime.Now.AddDays(0), Total = 2}
                              };
 
            PeriodStart = TimeBarData.Min(x => x.Date);
            PeriodEnd = TimeBarData.Max(x => x.Date);
            VisibleStart = PeriodEnd.AddDays(-10);
            VisibleEnd = PeriodEnd;
            SelectionStart = PeriodEnd.AddDays(-2);
            SelectionEnd = PeriodEnd;
        }
    }
 
    public class DetailTimeBarModel
    {
        public DateTime Date { get; set; }
        public int Total { get; set; }
    }

fgjd
Top achievements
Rank 1
 answered on 28 Nov 2012
1 answer
345 views
Hello,

I'm using an instance of RadListBox with Windows7 theme.

By default, a thin blue border appears around the selected listbox item - which I do not want. Rather, I would prefer to change the background color of the listbox item when it is selected.

How can I achieve this?
George
Telerik team
 answered on 28 Nov 2012
1 answer
129 views
Hello.

In WPF RadTimeline First Look example (presidents list)
UpdateCurrentPage() method in ExampleViewModel.cs file has duplicate variable settings as below.

Is there any reason?

this.StartDate = startDate;
this.EndDate = endDate;
this.StartDate = startDate;
 
this.VisibleStartDate = startDate;
this.VisibleEndDate = endDate;
this.VisibleStartDate = startDate;


Petar Kirov
Telerik team
 answered on 28 Nov 2012
1 answer
85 views
is there a way to export the book or pages of the book to excel or pdf?
Tina Stancheva
Telerik team
 answered on 28 Nov 2012
1 answer
684 views
Hi,

I am using an AutoCompleteBox inside a RadDataForm template.The control ItemsSource is bound to an ObseravableCollcetion while the selected item is bound to a property on the window.

<DataTemplate x:Key="MyTemplate">
                    <Grid>
                        <Grid.RowDefinitions>
                            <RowDefinition/>
                            <RowDefinition/>
                            <RowDefinition/>
                            <RowDefinition/>
                            <RowDefinition/>
                            <RowDefinition/>
                            <RowDefinition/>
                        </Grid.RowDefinitions>
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition Width="200"/>
                            <ColumnDefinition Width="*"/>
                        </Grid.ColumnDefinitions>
                        <Label Content="Driver" Grid.Row="0"/>
                        <Label Content="Document Number" Grid.Row="1"/>
                        <Label Content="Issue Date" Grid.Row="2"/>
                        <Label Content="Expiry Date" Grid.Row="3"/>
                        <Label Content="Place of Issue" Grid.Row="4"/>
                        <Label Content="Document Type" Grid.Row="5"/>
                        <Label Content="Remarks" Grid.Row="6"/>
                        <telerik:RadAutoCompleteBox AutoCompleteMode="Suggest"
                                              
                                             TextSearchPath="FullName"   ItemsSource="{Binding Drivers,ElementName=DriverDocumentView1}"    Name="RadAutoCompleteBox"  SearchTextChanged="RadAutoCompleteBox_SearchTextChanged" TextSearchMode="Contains" SelectionMode="Single"  DisplayMemberPath="Name" SelectedItem="{Binding SelectedDriver,ElementName=DriverDocumentView1}" Grid.Column="1" Grid.Row="0"/>
                        <TextBox Text="{Binding Document.DocumentNo}" Grid.Row="1" Grid.Column="1"/>
                        <DatePicker SelectedDate="{Binding IssueDate}"  Grid.Row="2" Grid.Column="1"/>
                        <DatePicker SelectedDate="{Binding ExpiryDate}"  Grid.Row="3" Grid.Column="1"/>
                        <ComboBox ItemsSource="{Binding PlacesOfIssue,ElementName=DriverDocumentView1}" DisplayMemberPath="Text" SelectedValuePath="ID" SelectedValue="{Binding Document.PlaceOfIssueID}" Grid.Column="1" Grid.Row="4"/>
                        <ComboBox ItemsSource="{Binding DocumentTypes,ElementName=DriverDocumentView1}" DisplayMemberPath="Name" SelectedValuePath="ID" SelectedValue="{Binding Document.DocumentTypeID}" Grid.Column="1" Grid.Row="5"/>
                        <TextBox Text="{Binding Remarks}" Grid.Row="6" Grid.Column="1"/>                      
                    </Grid>
                        
 
 
                </DataTemplate>

private Driver selectedDriver;
       public Driver SelectedDriver
       {
           get { return selectedDriver; }
           set { selectedDriver = value; NotifyPropertyChanged("SelectedDriver"); }
       }

Now, the breakpoint I set in the 'set' part of the SelectedDriver property is not hit.I also find it to be null when sending the form data for saving:

private void SaveBTN_Click(object sender, RoutedEventArgs e)
        {
            if (RadDataForm.ValidateItem())
            {
                DriverDocument driverDocument = RadDataForm.CurrentItem.To<DriverDocument>();
                driverDocument.Document.CreationDate = DateTime.Now;
                driverDocument.Document.EntryByID = 178;
                driverDocument.Driver = SelectedDriver;
                RadDataForm.SubmitChanges();
 
            }
        }


Thanks

Madani
Vladi
Telerik team
 answered on 28 Nov 2012
1 answer
189 views
Error occurs when I switch between cells with key "Tab" :
Value cannot be null.
Parameter name: source

Stack Trace

   at System.Linq.Enumerable.Cast[TResult](IEnumerable source)
   at Telerik.Windows.Controls.GridViewBoundColumnBase.GetValidationErrors(Object dataItem, String propertyName) in c:\TB\135\WPF_Scrum\Current_HotFix\Sources\Controls\GridView\GridView\GridView\Columns\GridViewBoundColumnBase.cs:line 1579
   at Telerik.Windows.Controls.GridView.GridViewCell.<GetDataErrors>d__7.MoveNext() in c:\TB\135\WPF_Scrum\Current_HotFix\Sources\Controls\GridView\GridView\GridView\Cells\GridViewCell.cs:line 709
   at Telerik.Windows.Data.EnumerableExtensions.Count(IEnumerable source) in c:\TB\135\WPF_Scrum\Current_HotFix\Sources\Core\Data\Collections\EnumerableExtensions.cs:line 124
   at Telerik.Windows.Controls.GridView.GridViewCell.UpdateIsValidState() in c:\TB\135\WPF_Scrum\Current_HotFix\Sources\Controls\GridView\GridView\GridView\Cells\GridViewCell.cs:line 603
   at Telerik.Windows.Controls.GridView.GridViewCell.UpdateValue() in c:\TB\135\WPF_Scrum\Current_HotFix\Sources\Controls\GridView\GridView\GridView\Cells\GridViewCell.cs:line 1594
   at Telerik.Windows.Controls.GridView.GridViewCell.SetCellElement() in c:\TB\135\WPF_Scrum\Current_HotFix\Sources\Controls\GridView\GridView\GridView\Cells\GridViewCell.cs:line 522
   at Telerik.Windows.Controls.GridView.GridViewCell.HideEditor() in c:\TB\135\WPF_Scrum\Current_HotFix\Sources\Controls\GridView\GridView\GridView\Cells\GridViewCell.cs:line 818
   at Telerik.Windows.Controls.GridView.GridViewCell.ToggleEditor() in c:\TB\135\WPF_Scrum\Current_HotFix\Sources\Controls\GridView\GridView\GridView\Cells\GridViewCell.cs:line 1130
   at Telerik.Windows.Controls.GridView.GridViewDataControl.OnCellEditModeChanged(GridViewCell cell, Boolean newIsInEditMode) in c:\TB\135\WPF_Scrum\Current_HotFix\Sources\Controls\GridView\GridView\GridView\GridViewDataControl.Editing.cs:line 400
   at Telerik.Windows.Controls.GridView.GridViewCell.IsInEditModeChanged(DependencyObject target, DependencyPropertyChangedEventArgs e) in c:\TB\135\WPF_Scrum\Current_HotFix\Sources\Controls\GridView\GridView\GridView\Cells\GridViewCell.cs:line 1118
   at System.Windows.DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs e)
   at System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs e)
   at System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs args)
   at System.Windows.DependencyObject.UpdateEffectiveValue(EntryIndex entryIndex, DependencyProperty dp, PropertyMetadata metadata, EffectiveValueEntry oldEntry, EffectiveValueEntry& newEntry, Boolean coerceWithDeferredReference, Boolean coerceWithCurrentValue, OperationType operationType)
   at System.Windows.DependencyObject.SetValueCommon(DependencyProperty dp, Object value, PropertyMetadata metadata, Boolean coerceWithDeferredReference, Boolean coerceWithCurrentValue, OperationType operationType, Boolean isInternal)
   at System.Windows.DependencyObject.SetValue(DependencyProperty dp, Object value)
   at Telerik.Windows.Controls.GridView.GridViewCell.set_IsInEditMode(Boolean value) in c:\TB\135\WPF_Scrum\Current_HotFix\Sources\Controls\GridView\GridView\GridView\Cells\GridViewCell.cs:line 298
   at Telerik.Windows.Controls.GridView.GridViewCell.RaiseCellEditEndedEvent(GridViewEditAction editAction) in c:\TB\135\WPF_Scrum\Current_HotFix\Sources\Controls\GridView\GridView\GridView\Cells\GridViewCell.cs:line 1229
   at Telerik.Windows.Controls.GridView.GridViewDataControl.PerformCellEditEnded(GridViewCell currentCell) in c:\TB\135\WPF_Scrum\Current_HotFix\Sources\Controls\GridView\GridView\GridView\GridViewDataControl.Editing.cs:line 108
   at Telerik.Windows.Controls.GridView.GridViewDataControl.CommitCellEdit(GridViewCell currentCell, Boolean isLeavingRow) in c:\TB\135\WPF_Scrum\Current_HotFix\Sources\Controls\GridView\GridView\GridView\GridViewDataControl.Editing.cs:line 69
   at Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanging(GridViewCellInfo oldCell, GridViewCellInfo newCell) in c:\TB\135\WPF_Scrum\Current_HotFix\Sources\Controls\GridView\GridView\GridView\GridViewDataControl.cs:line 841
   at Telerik.Windows.Controls.GridView.GridViewDataControl.set_CurrentCellInfo(GridViewCellInfo value) in c:\TB\135\WPF_Scrum\Current_HotFix\Sources\Controls\GridView\GridView\GridView\GridViewDataControl.cs:line 803
   at Telerik.Windows.Controls.GridView.GridViewDataControl.BeginEdit(GridViewCell gridViewCell, RoutedEventArgs editingEventArgs) in c:\TB\135\WPF_Scrum\Current_HotFix\Sources\Controls\GridView\GridView\GridView\GridViewDataControl.Editing.cs:line 667
   at Telerik.Windows.Controls.GridView.GridViewDataControl.OnCellMouseDown(GridViewCell cell, MouseButtonEventArgs args) in c:\TB\135\WPF_Scrum\Current_HotFix\Sources\Controls\GridView\GridView\GridView\GridViewDataControl.Editing.cs:line 356
   at Telerik.Windows.Controls.GridView.GridViewCell.OnMouseLeftButtonDown(MouseButtonEventArgs e) in c:\TB\135\WPF_Scrum\Current_HotFix\Sources\Controls\GridView\GridView\GridView\Cells\GridViewCell.cs:line 418
   at System.Windows.UIElement.OnMouseLeftButtonDownThunk(Object sender, MouseButtonEventArgs e)
   at System.Windows.Input.MouseButtonEventArgs.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.ReRaiseEventAs(DependencyObject sender, RoutedEventArgs args, RoutedEvent newEvent)
   at System.Windows.UIElement.OnMouseDownThunk(Object sender, MouseButtonEventArgs e)
   at System.Windows.Input.MouseButtonEventArgs.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.RaiseTrustedEvent(RoutedEventArgs args)
   at System.Windows.UIElement.RaiseEvent(RoutedEventArgs args, Boolean trusted)
   at System.Windows.Input.InputManager.ProcessStagingArea()
   at System.Windows.Input.InputManager.ProcessInput(InputEventArgs input)
   at System.Windows.Input.InputProviderSite.ReportInput(InputReport inputReport)
   at System.Windows.Interop.HwndMouseInputProvider.ReportInput(IntPtr hwnd, InputMode mode, Int32 timestamp, RawMouseActions actions, Int32 x, Int32 y, Int32 wheel)
   at System.Windows.Interop.HwndMouseInputProvider.FilterMessage(IntPtr hwnd, WindowMessage msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
   at System.Windows.Interop.HwndSource.InputFilterMessage(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
   at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
   at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
   at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
   at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)
Vera
Telerik team
 answered on 28 Nov 2012
1 answer
143 views
Is RaWindow a good candidate to function as a child window that cannot be dragged outside the confines of its parent's boundaries?

Similar to shadowbox-type functionality on websites when user input is required and parent is locked?  We'd like the user to still be able to drag/resize/minimize/etc the parent while the child window is controlling it.
George
Telerik team
 answered on 28 Nov 2012
9 answers
278 views
hello,

i am trying to set up a custom range on my y axis as our 'date' values are custom generated and do not work in the same way as normal dates or numeric values.

we have a situation where the chart would run along variable time levels, ie sometimes weeks, sometimes months, quarters, etc. the chart needs to plot these time members across the Y axis of a horizontal 2D Bar chart and display the values as such:

M201010       M201011       M201012     M201101 etc..

what we did to overcome the fact that we need a numeric value for the axis was to use only the numeric section of the chart and then set a min and max value (since we know the start and end date for the chart) but this works only as long as the values are for the same year, in this example 2010.

if the periods span over 2 years, ie from 2010 to 2011, the series stretches from M201012 all the way to M201099 before getting on to 2011, because it increments by one of course.

the chart is set up in the xaml as follows:

<telerik:RadChart Grid.Row="0" Grid.Column="0" x:Name="TimeRangeChart" ItemsSource="{Binding PhasingOptionList}" UseDefaultLayout="False" DataBound="TimeRangeChart_Loaded">
            <telerik:RadChart.Resources>
                <Style x:Key="CustomAxisTitleStyle" TargetType="telerik:AxisTitle">
                    <Setter Property="FontWeight" Value="Normal" />
                    <Setter Property="Margin" Value="0,0,10,0" />
                </Style>
                <Style x:Key="SeriesItemLabelStyle" TargetType="telerik:SeriesItemLabel">
                    <Setter Property="VerticalAlignment" Value="Center" />
                </Style>
                <Style x:Key="ItemLabelStyle" TargetType="TextBlock">
                    <Setter Property="HorizontalAlignment" Value="Left"/>
                    <Setter Property="Visibility" Value="Collapsed"/>                   
                </Style>
            </telerik:RadChart.Resources>
            <telerik:RadChart.SeriesMappings>
                <telerik:SeriesMapping ChartAreaName="ChartArea" >
                    <telerik:SeriesMapping.SeriesDefinition>
                        <telerik:HorizontalRangeBarSeriesDefinition ShowItemLabels="True" ItemLabelFormat="#OptionName - #ColourDescr"
                                                                    ShowItemToolTips="True" SeriesItemLabelStyle="{StaticResource SeriesItemLabelStyle}">                          
                            <telerik:HorizontalRangeBarSeriesDefinition.InteractivitySettings>
                                <telerik:InteractivitySettings SelectionMode="Single" SelectionScope="Item" HoverScope="Item"  />
                            </telerik:HorizontalRangeBarSeriesDefinition.InteractivitySettings>
                        </telerik:HorizontalRangeBarSeriesDefinition>
                    </telerik:SeriesMapping.SeriesDefinition>
                    <telerik:ItemMapping FieldName="ProposedSellTimeFromCodeNumeric" DataPointMember="Low" />
                    <telerik:ItemMapping FieldName="ProposedSellTimeToCodeNumeric" DataPointMember="High" />
                    <telerik:ItemMapping FieldName="OptionNo" DataPointMember="XCategory" />
                </telerik:SeriesMapping>
            </telerik:RadChart.SeriesMappings>
            <Grid>
                <Grid.RowDefinitions>
                    <RowDefinition Height="*"/>
                </Grid.RowDefinitions>
                <telerik:ChartArea Grid.Row="0" x:Name="ChartArea" NoDataString="" LabelFormatBehavior="None"
                                   ItemClick="ChartArea_ItemClick" ItemToolTipOpening="ChartArea_ItemToolTipOpening"
                                    PaletteBrushesRepeat="False" EnableAnimations="False" >
                    <telerik:ChartArea.ZoomScrollSettingsX>
                        <telerik:ZoomScrollSettings ScrollMode="ScrollAndZoom" MinZoomRange="0.005"/>
                    </telerik:ChartArea.ZoomScrollSettingsX>
                    <telerik:ChartArea.PaletteBrushes>
                        <SolidColorBrush Color="#FF74A6E2"/>
                    </telerik:ChartArea.PaletteBrushes>
                    <telerik:ChartArea.AxisY>
                        <telerik:AxisY Title="{Binding BottomTimePeriodDescription}" ExtendDirection="Up" DefaultLabelFormat="{Binding TimeValueLabelFormat}"
                                        MinValue="{Binding FromWeekNumeric}" MaxValue="{Binding ToWeekNumeric}" AutoRange="False"
                                        LabelRotationAngle="-45" MinorTicksVisibility="Hidden">
                            <telerik:AxisY.AxisStyles>
                                <telerik:AxisStyles TitleStyle="{StaticResource CustomAxisTitleStyle}" ItemLabelStyle="{StaticResource ChartAxisTextStyle}" />
                            </telerik:AxisY.AxisStyles>
                        </telerik:AxisY>
                    </telerik:ChartArea.AxisY>
                    <telerik:ChartArea.AxisX>
                        <telerik:AxisX LayoutMode="Inside" MinorTicksVisibility="Collapsed" MajorTicksVisibility="Collapsed"  >
                            <telerik:AxisX.AxisStyles>
                                <telerik:AxisStyles ItemLabelStyle="{StaticResource ItemLabelStyle}" />
                            </telerik:AxisX.AxisStyles>
                        </telerik:AxisX>
                    </telerik:ChartArea.AxisX>
                </telerik:ChartArea>               
            </Grid>
        </telerik:RadChart>


is there a way to get around this?

thanks,
Nemanja
Nemanja
Top achievements
Rank 1
 answered on 28 Nov 2012
3 answers
317 views
I show a message box in cellvalidating event to show the error message as a Messagebox..

It usually work ok, but if i use the TAB key to move out of the field, the event fire twice (so the message box show twice... )


A sample project is attached to the support ticket #384333
http://www.telerik.com/account/support-tickets/view-ticket.aspx?threadid=384333
Yordanka
Telerik team
 answered on 28 Nov 2012
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
DataPager
PersistenceFramework
Styling
TimeBar
OutlookBar
TransitionControl
FileDialogs
Book
ToolBar
ColorPicker
TimePicker
MultiColumnComboBox
SyntaxEditor
VirtualGrid
NavigationView (Hamburger Menu)
Wizard
ExpressionEditor
WatermarkTextBox
DesktopAlert
BarCode
SpellChecker
DataServiceDataSource
EntityFrameworkDataSource
RadialMenu
ChartView3D
Data Virtualization
BreadCrumb
LayoutControl
ProgressBar
Sparkline
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
Callout
PasswordBox
SplashScreen
Localization
Rating
Accessibility
CollectionNavigator
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?