Telerik Forums
UI for WPF Forum
2 answers
87 views
Hello

I know this is going to sound stupid, but I was wondering if anyone could explain in a simple walkthrough on how to use the RadPanel Bar in Microsoft Expression Blend 2.

I'm a super noob as you can tell.  thank you in advance
Ken
Top achievements
Rank 1
 answered on 07 Nov 2008
3 answers
226 views
Dear All

I've just spent a while trying to get a hand-authored theme (basically identical to SimpleTheme, but in my assembly) to work with the grid, but without success.

I can reference the SimpleTheme class in Telerik.Windows.Controls.UI.Simple and my grid reflects this theme, but if I copy the theme into my project (after fixing up namespaces etc.) and setting the Theming.Theme attached property on the grid to point to my derived class of Theme, I end up with a completely blank grid.

I have two ideas as to why this is happening:
- Assemblies containing themes authored by Telerik are signed with a strong name key
- The syntax I am using to set up the ThemeResourceKey that points a particular style at a particular part of the grid is incorrect.  The following example is from Telerik code:

x:Key="{telerik:ThemeResourceKey ThemeType=telerik:SummerTheme, ElementType=grid:GridViewItemsControl}"

and I'm a bit surprised that ThemeType is assigned like this using just a string.  I've done the same, using the namespace of the class I have which is derived from Theme, but without success.

Can you provide us with a step-by-step guide to hand authoring themes for the Grid, or is this currently not possible?

In the meantime, we are going to continue styling the grid without unifying this into a Theme.

Regards

Chris
Atanas
Telerik team
 answered on 07 Nov 2008
4 answers
150 views
Hi,

I've addressed this issue before in this thread - Telerik's WPF controls don't initially support SQL Server Developer Edition (or other versions that don't support the user instance flag in connection strings).  I had forgotten about this issue when I downloaded the Q2 release, and was a little confused when I could get the demo to start without immediately crashing!  I know you don't have plans for native support of different SQL Server versions (which I still think would be nice), but I did see Hristo say in the other thread that "We will be shipping a .config file with the official version and the installer should handle the DB configuration for you."  I did see the .config file and just edited the settings through the property pages in Visual Studio.  However, the installer definitely messed up in configuring my database server.  Is there any chance that in future releases the installer will do this automatically?  It may seem like a small feature, but it would make your product seem a whole lot more professional if I didn't have to tweak the demo's configuration in order for it to run, and I'm sure everyone not using SQL Express would very much appreciate it :)  Let me know how feasible this might be for Q3!

Thanks so much,

UIdev
Atanas
Telerik team
 answered on 07 Nov 2008
1 answer
314 views
Hi,

I've implemented a chart with multiple areas (i get the percentages of the cpu's and add it to the chart data) but i have some problems:

  1. How can i add a fixed Y-axis (0-100 major tick 10 minor 5) because now it's dynamic (changes if value is greater or smaller then axis)
  2. How can i make the X-axis start at 0 because now i've got a gap between the first value and the Y-axis (because Y is always 1 as start)
  3. How can i remove the label on the points displaying the value

Code for populating the chart:

        DataSeries splineAreaSeriesCPU1 = null;  
        DataSeries splineAreaSeriesCPU2 = null;  
        public void fillProcessorChart()  
        {  
            splineAreaSeriesCPU1 = new DataSeries();  
            splineAreaSeriesCPU2 = new DataSeries();  
 
            splineAreaSeriesCPU1.Definition = new SplineAreaSeriesDefinition();  
            splineAreaSeriesCPU2.Definition = new SplineAreaSeriesDefinition();  
 
            ChartArea1.DataSeries.Add(splineAreaSeriesCPU1);  
            ChartArea2.DataSeries.Add(splineAreaSeriesCPU2);  
              
        }  
 
        public static void FillWithSampleData(DataSeries series, double PcValue)  
        {  
            series.Add(new DataPoint { XValue = series.Count() , YValue = PcValue });  
              
              
            if (series.Count()>10)  
                series.RemoveAt(0);  
        } 

XAml
                <telerik:RadChart x:Name="RadChart1" Margin="8,8,8,8" Grid.Row="3" Grid.Column="2"  UseDefaultLayout="False" VirtualizingStackPanel.VirtualizationMode="Recycling">  
                      
 
                    <Grid VerticalAlignment="Stretch" HorizontalAlignment="Stretch">  
                        <Grid.RowDefinitions> 
                            <RowDefinition Height="0.5*" /> 
                            <RowDefinition Height="0.5*" /> 
                        </Grid.RowDefinitions> 
                        <Grid.ColumnDefinitions> 
                            <ColumnDefinition Width="*" /> 
 
                        </Grid.ColumnDefinitions> 
 
 
                        <telerik:ChartArea Grid.Row="0" x:Name="ChartArea1" > 
                            <telerik:ChartArea.AxisY> 
                                <telerik:AxisY MajorGridLinesVisibility="Collapsed" 
                                               MinorTicksVisibility="Visible" 
                                               Title="CPU 1" /> 
                            </telerik:ChartArea.AxisY> 
                        </telerik:ChartArea> 
 
 
                        <telerik:ChartArea Grid.Row="1" x:Name="ChartArea2" > 
                            <telerik:ChartArea.AxisY> 
                                <telerik:AxisY MajorGridLinesVisibility="Collapsed" 
                                               MinorTicksVisibility="Visible" 
                                               Title="CPU 2" /> 
                            </telerik:ChartArea.AxisY> 
                        </telerik:ChartArea> 
 
 
                    </Grid> 
                </telerik:RadChart> 

Any ideas?
Ves
Telerik team
 answered on 06 Nov 2008
4 answers
957 views
Our designer would like us to have a grey row separator across the width of the grid.  At the moment, we can only do this as far right as the right edge of the last defined column.

Is there a way to achieve this?

(We are having a related issue with the mouse-over highlighting for a row.  We would like that to go to right edge of the grid as well.)

Regards

Chris Smith
Atanas
Telerik team
 answered on 06 Nov 2008
1 answer
106 views
Hi, I have editable cell in radGridView. When i write new value and click btn "Save" this cell not lose focus and i get old value in this cell.

Could you help me?
Atanas
Telerik team
 answered on 03 Nov 2008
1 answer
115 views
Hi,
My Purchase list shows RadControls for WPF but when i download its downloading trial version of 60 days. Whats the reason?
Hristo
Telerik team
 answered on 31 Oct 2008
1 answer
176 views
Is there a way to have the grid display a value in the column other than the underlying objects .ToString()?
Atanas
Telerik team
 answered on 29 Oct 2008
3 answers
114 views
Hi,

I'm working on project where I need to develop a carousel type of UI. I am testing your RadCarouselPanel Control and I'm linking it very much, but I can't get the exactly look i need out of it. So I was wondering if you cold help me.

The look I am looking for is something like that:
http://adrianosilva.net/CarouselPanel.gif

I can get the adjacent controls to have a scale effect but I would need a skew effect also more like the image above.

Is it possoble to do that?

Thanks,

Adriano Silva

Milan
Telerik team
 answered on 27 Oct 2008
2 answers
145 views
Greetings,
  I am attempting to have the text in a GridViewTextBoxEditor selected when a user sets focus to a cell using that editor.

I'm not finding any access to the underling TextBox object (I am assuming there must be one) via either the GridViewTextBoxEditor or the Field object of a cell.

I was expecting to the standard selection and caret properties/method exposed via the GridViewTextBoxEditor.

Any ideas?

Thanks,
   Chris
Christopher
Top achievements
Rank 1
 answered on 27 Oct 2008
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
Wizard
ExpressionEditor
NavigationView (Hamburger Menu)
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?