Telerik Forums
UI for WPF Forum
1 answer
135 views
I have a node with one connector (custom named). When I create a connection from this connector, a number of things can happen:

1) If I quickly create a connection, RemoveItem() is called and the connection disappears. The event is not triggered!
2) If I slowly create a connection, the e.ManipulationStatus has value ManipulationStatus.Moved.

First of all, I would expect the same behavior no matter how fast I click and release the mouse button. Please fix this!
Secondly, if I click on a connector and start dragging a new connection, I would expect ManipulationStatus.Attaching. The target will be null, but a connection was still attached to the source, wasn't it?

Two important bugs in my opinion.
Tina Stancheva
Telerik team
 answered on 05 Feb 2013
3 answers
95 views
Hi,

I have one RadGridView, inside that i've one GridViewDataColumn where user can enter the details.
I am facing issues when the entered value is having underscore(_), say Motor_1, so when user double click after 1, instead of selecting the full word only 1 get selected.
What can i do in order to select the full word on double click irrespective of any special characters.

Thanks,
Prakhar
Dimitrina
Telerik team
 answered on 05 Feb 2013
1 answer
168 views
Hello,

I was just wondering what your future plans are for supporting WPF 4.0?

I have several clients and projects that are built specifically for Windows XP systems and my clients have no 'business' reasons to upgrade their systems to a newer operating system.

This puts me in a bit of a situation. I have not upgraded my developer environment to Windows 8 or Visual Studio 2012 because Microsoft is not releasing updates for Windows XP or the .Net Framework 4.0. So, basically I need to remain 'compatible' with my clients build so I can continue to support them.

However, I'm a little nervous that support will get pulled for WPF 4 (Telerik Controls) and the .Net Framework.

Can you please share some thoughts with us? What's the support 'road map' looking like for WPF 4.0?

Please let me know and thanks!

~ Dave
Vlad
Telerik team
 answered on 05 Feb 2013
1 answer
114 views
Hi

When we click on Autoocomplete box we are ascertaining the below issue,
i have also glued the code where i am able to find the issue,
Can anyone help me to resolve this issue ?



string

 

 

_modeldesc = ((Telerik.Windows.Controls.RadWatermarkTextBox)(e.OriginalSource)).CurrentText;

 




Regards
Gayathri R
Ivo
Telerik team
 answered on 05 Feb 2013
2 answers
103 views
I am able to set the ColumnBackground at design time in the XAML, but when I try to set the ColumnBackground at runtime when my Window is loaded, nothing happens.  For example:

myGrid.ColumnBackground = new SolidColorBrush(Colors.AliceBlue);

Is it possible to set the ColumnBackground at runtime?
John DeVight
Top achievements
Rank 1
 answered on 04 Feb 2013
1 answer
115 views
Hi,

is it possible to get the filter popup to show from a context menu rather then clicking the filter button on the column header

Thanks

David
Yoan
Telerik team
 answered on 04 Feb 2013
2 answers
118 views
Hello. When I am resizing my GridView some cells can be displayed without borders (like merged) (in Expression dark theme, other themes work fine). Is it bug?

UPDATE: In other themes I found the same problem. I was doing very fast  horisontal resizing

Style to my GridView

<Style x:Key="GridViewStandardStyle" TargetType="{x:Type controls:OlbGridView}">
        <Setter Property="IsReadOnly" Value="True"/>
        <Setter Property="GroupRenderMode" Value="Flat"/>
        <Setter Property="VirtualizingStackPanel.IsVirtualizing" Value="True"/>
        <Setter Property="AutoGenerateColumns" Value="False"/>
        <Setter Property="ShowGroupPanel" Value="False"/>
    </Style>


Thanks
Yordanka
Telerik team
 answered on 04 Feb 2013
1 answer
252 views
I'm developing an application which uses the RadCartesianChart. There is also a ComboBox where I can choose some values. The performance of the Chart control is well (zooms and pans normally) until I click on the ComboBox. After this, the performance of the chart lacks. Panning and zooming is very slow. There are 288 values in this chart.
The problem appears on my computer (Core 2 Duo T9600). The problem doesn't appear on another computer (i7). I'm confused, because the ComboBox is needed. Telerik wpf controls are in v2012.2.607.40

Here the XAML:
<Window x:Class="testingComboboxBug.MainWindow"
        xmlns:ignore="http://www.ignore.com" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
        mc:Ignorable="d ignore"
        Height="400"
        Width="800"
        Title="MVVM Light Application"
        DataContext="{Binding Main, Source={StaticResource Locator}}">
     
    <Window.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="Skins/MainSkin.xaml" />
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Window.Resources>
 
    <Grid x:Name="LayoutRoot">
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="Auto"/>
            <ColumnDefinition Width="*"/>
        </Grid.ColumnDefinitions>
        <ComboBox Grid.Column="0">
            <ComboBox.Items>
                <TextBlock Text="Bla1"/>
                <TextBlock Text="Bla2"/>
                <TextBlock Text="Bla3"/>
            </ComboBox.Items>
        </ComboBox>
        <telerik:RadCartesianChart x:Name="RadCartesianChart" Margin="0" BorderBrush="Black" BorderThickness="0" Grid.Column="1"
                Zoom="{Binding Zoom, Mode=TwoWay}" PanOffset="{Binding PanOffset, Mode=TwoWay}" HorizontalContentAlignment="Center">
            <telerik:RadCartesianChart.Background>
                <SolidColorBrush Opacity="0"/>
            </telerik:RadCartesianChart.Background>
 
            <telerik:RadCartesianChart.Behaviors>
                <telerik:ChartPanAndZoomBehavior ZoomMode="Horizontal" />
            </telerik:RadCartesianChart.Behaviors>
 
            <telerik:RadCartesianChart.HorizontalAxis>
                <telerik:DateTimeCategoricalAxis PlotMode="OnTicks" MajorTickInterval="20" LabelFormat="HH:mmm"
                        LabelStyle="{StaticResource labelFontStyle}" MajorTickStyle="{StaticResource tickStyle}" ShowLabels="True" Margin="0,-2,0,0" />
            </telerik:RadCartesianChart.HorizontalAxis>
 
            <telerik:RadCartesianChart.VerticalAxis>
                <telerik:LinearAxis Title="Инт. ТС"/>
            </telerik:RadCartesianChart.VerticalAxis>
 
            <telerik:RadCartesianChart.Grid>
                <telerik:CartesianChartGrid StripLinesVisibility="None" MajorLinesVisibility="XY" Margin="0">
                    <telerik:CartesianChartGrid.YStripeBrushes>
                        <SolidColorBrush Color="#FFD7D7D7" Opacity="0.3" />
                        <SolidColorBrush Color="Transparent" />
                    </telerik:CartesianChartGrid.YStripeBrushes>
                </telerik:CartesianChartGrid>
            </telerik:RadCartesianChart.Grid>
            <telerik:BarSeries CategoryBinding="TimeStamp" ValueBinding="Value" ItemsSource="{Binding Counts}" PointTemplate="{DynamicResource BarSeriesTemplate}">
                <telerik:BarSeries.Resources>
                    <DataTemplate x:Key="BarSeriesTemplate">
                        <!--<Rectangle StrokeThickness="0" Fill="{Binding DataItem.Quality, Converter={StaticResource QualityColorConverter}}" />-->
                        <Rectangle StrokeThickness="0" >
                            <Rectangle.Fill>
                                <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
                                    <GradientStop Color="#FF066607" Offset="0"/>
                                    <GradientStop Color="#FF00D603" Offset="1"/>
                                </LinearGradientBrush>
                            </Rectangle.Fill>
                        </Rectangle>
                    </DataTemplate>
                </telerik:BarSeries.Resources>
            </telerik:BarSeries>
        </telerik:RadCartesianChart>
    </Grid>
</Window>
Petar Kirov
Telerik team
 answered on 04 Feb 2013
4 answers
331 views
Hi,
I'm trying to replicate the way Windows Explorer works when you expand a node.
If you expand a node with child items, and those childred expand beyond the view, the view scrolls so that as many of the child nodes as possible are displayed.

Currently I have this code, which works the first time a node is expanded, but stops to work after contracting and expanding.

private void Tree_OnExpanded(object sender, RadRoutedEventArgs e)
{
var originalSource = e.OriginalSource
as RadTreeViewItem;
new Thread(() =>
{
    while (originalSource.ItemContainerGenerator.ContainerFromIndex(0) == null)
        Thread.Sleep(100);
        
    Dispatcher.BeginInvoke(new Action(() =>
    {
        tree.BringIntoViewMode = BringIntoViewMode.HeaderAndItems;
        originalSource.BringIntoView();
        tree.BringIntoViewMode = BringIntoViewMode.Header;
    }));
 
 
}).Start();

Is there a better way to implement this behavior?
Tina Stancheva
Telerik team
 answered on 04 Feb 2013
1 answer
76 views
Hi,

When will RadControls for WPF Q1'13 released and is available for download?

Thanks
Regards
Rene
Dimitrina
Telerik team
 answered on 04 Feb 2013
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?