Telerik Forums
UI for WPF Forum
5 answers
602 views
I am writing an application similar to the Sales Dashboard example. In the example,  only simple polygons are being displayed, is it possible to use MultiPolygons with the RadMap?
Andrey
Telerik team
 answered on 30 Jun 2010
1 answer
117 views
hi,

I have two docked panes (RadGridView) and I would like to drag itens from one grid to another. It works fine if they are side by side, but when I put them in the same pane (as tabbed panes) I cant change from one pane to another while dragging. Is there a way to change the current tab when dragging just by pointing the tab you want to drop the row?

I am also facing this problem: http://www.telerik.com/community/forums/wpf/draganddrop/drag-and-drop-between-two-docking-panes.aspx I cant make the drag and drop work on floating and unpinned panes. Is there a workaround? Thank you.
Kiril Stanoev
Telerik team
 answered on 30 Jun 2010
5 answers
268 views
How should I do it? I'd appreciate if someone can send a code sample.

Thanks.
Yavor Georgiev
Telerik team
 answered on 30 Jun 2010
1 answer
86 views
Hi, I have a question about this new control.

I have tried out the demo and I was wondering is it possible to edit the cells ? (I can not do that in the demo).

But the beta looks good and I am looking forward to seeing the final product.

Best regards
Kristján.
Veselin Vasilev
Telerik team
 answered on 30 Jun 2010
10 answers
228 views
I am running VS2010 RC 1 with the 2010.1 version of RadControls. I have installed the WPF, SIlverlight and ASP.net AJax controls. I now have the Telerik Menu option in VS and create a Telerik WPF project. There is no Telerik controls Toolbox? Also, when I right click on any of the Telerik control references, they all show a runtime version of 2.0.50727? Where are the version 4 controls?  Also - is there a layout designer toolbar for WPF in VS2010? I don't see that option under Tools-Customize
Milan
Telerik team
 answered on 30 Jun 2010
2 answers
125 views
FlowDirection="RightToLeft" applied for RadWindow distorts its normal behaviour:
the window, if moved or resized horizontally, moves or resizes to the opposite direction in very strange mode.

[A simple project for demostration of the those behaviours attached to this message.]
There is not possibility to add project rar file, so I add the sources here.

App.xaml

<Application x:Class="MDIWindows.App"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    StartupUri="Window1.xaml">
    <Application.Resources>         
    </Application.Resources>
</Application>

Window1

<Window x:Class="MDIWindows.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="198" Width="300">
    <StackPanel>
        <Button Content="Open" Click="OnOpenClick" Height="40" />
        <Button Content="BringToFront" Click="OnBringToFrontClick" Height="40" />
    </StackPanel>
</Window>


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using Telerik.Windows.Controls;
using WpfApplication1;

namespace MDIWindows
{
 /// <summary>
 /// Interaction logic for Window1.xaml
 /// </summary>
 public partial class Window1 : Window
 {
  Example window;
  public Window1( )
  {
   InitializeComponent();
  }

  private void OnOpenClick( object sender, RoutedEventArgs e )
  {
   if( window == null )
   {
    window = new Example();

    window.Width = 200;
    window.Height = 200;
    window.Owner = this;
   }

   window.Show();
  }

  private void OnBringToFrontClick( object sender, RoutedEventArgs e )
  {
   if( window == null )
    window.BringToFront();
  }
 }
}


Example

<telerik:RadWindow x:Class="WpfApplication1.Example"
            
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Navigation"
                            
        x:Name="window" Header="ABC" WindowStartupLocation="CenterScreen" FlowDirection="RightToLeft" Width="400" Height="244">
   
</telerik:RadWindow>


using System;
using System.Windows;
using System.Windows.Media;
using Telerik.Windows.Controls;

using WindowStartupLocation = System.Windows.WindowStartupLocation;
using WindowState = System.Windows.WindowState;

namespace WpfApplication1
{
 public partial class Example : Telerik.Windows.Controls.RadWindow
 {
  public Example( )
  {
   InitializeComponent();
  }
 }
}

 









Miroslav Nedyalkov
Telerik team
 answered on 30 Jun 2010
1 answer
114 views
Hi There

I cant find any examples of how to set focus on a selected row.

Say I have a grid with 5000 records and in code I set the selecteditem. I then want the grid to show that item in focus on the screen (scroll to where that item is located).

How would this be possible?

Regards

Nick
Milan
Telerik team
 answered on 30 Jun 2010
6 answers
137 views
hello,

I would like to know if it is possible to detect a double-click on the row "Click here to add a new item"
to prevent an exception in radGridView1_MouseDoubleClick

best regards
thibaut
Thibaut
Top achievements
Rank 1
 answered on 29 Jun 2010
5 answers
116 views

Hi.
When changing visual style not the first time, but the second time, the application always chrashes. I change the styles like this:

this

 

 

.RadRibbonBar.SetValue(StyleManager.ThemeProperty, new Windows7Theme());

 

 

 

this.RadPaneGroup.SetValue(StyleManager.ThemeProperty, new Windows7Theme());

 

 

 

this.RetrivalDataGrid.SetValue(StyleManager.ThemeProperty, new Windows7Theme());

It does not matter which style I change to. It always works the first time and always chrases the second time.

The application error message is like this:

 

An unhandled exception of type 'System.ArgumentOutOfRangeException' occurred in PresentationCore.dll

 

 


Additional information: Specified argument was out of the range of valid values.

Anyone know what this problem is?

regards
 Kjetil

 

Milan
Telerik team
 answered on 29 Jun 2010
3 answers
178 views
Hi,

How do I turn off or set speed for the animation when expand a row i TreeView?

Kind Regards
Ken
Dimitrina
Telerik team
 answered on 29 Jun 2010
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
Slider
Expander
TileList
PersistenceFramework
DataPager
TimeBar
Styling
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
CardView
DataBar
WebCam
FilePathPicker
Licensing
PasswordBox
Rating
SplashScreen
Accessibility
Callout
CollectionNavigator
Localization
AutoSuggestBox
HighlightTextBlock
Security
TouchManager
StepProgressBar
VirtualKeyboard
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?