Telerik Forums
UI for WPF Forum
1 answer
59 views
Hi,
It would have been great if you could make a theme which looks like the Schedule View -> First Look screen in Q3 release. This looks fantastic. Apply this theme to your editors and grids and I'm pretty sure that just a picture of it will make you sell a lot more.
Best wishes
Dani
Telerik team
 answered on 17 Nov 2010
1 answer
58 views
as follows:
            // Apply Data Source to Tile View
            this.tileView1.ItemsSource = new TagBoards();
---------------------------------------
        <telerik:RadTileView x:Name="tileView1" HorizontalAlignment="Left" VerticalAlignment="Top" VerticalContentAlignment="Top" Margin="9,40,0,0">
            <telerik:RadTileView.ItemTemplate>
                <DataTemplate>
                    <TextBlock Text="{Binding Name}" />
                </DataTemplate>
--------------------------------------
Works fine. But how to I access other fields from ItemSource within Custom Control:
-----------------------------------------
            <telerik:RadTileView.ContentTemplate>
                <DataTemplate>
                    <telerik:RadFluidContentControl Name="MineViewFluidControl" SmallToNormalThreshold="250, 150"
        NormalToSmallThreshold="250, 150" NormalToLargeThreshold="425, 350"
        LargeToNormalThreshold="425, 350">
                            <telerik:RadFluidContentControl.SmallContent>
                            <my:ZoneMinimum x:Name="MinimumZoneSmall" AlarmNameText="{Binding AlarmNameText}"/>
                        </telerik:RadFluidContentControl.SmallContent>
----------------------------------------------------

    /// </summary>
    public partial class ZoneMinimum : UserControl
    {
        public ZoneMinimum()
        {
            InitializeComponent();
        }

        public string ZoneLabelText
        {

            get { return tblkZoneName.Text; }

            set { tblkZoneName.Text = value; }

        }

        public string ItemLabelText
        {

            get { return tblkItemName.Text; }

            set { tblkItemName.Text = value; }

        }

        public string AlarmNameText
        {

            get { return tblkAlarmName.Text; }

            set { tblkAlarmName.Text = value; }

        }

        public string TruckTotalText
        {

            get { return tblkTruckTotal.Text; }

            set { tblkTruckTotal.Text = value; }

        }

        public string AlarmTotalText
        {

            get { return tblkAlarmTotal.Text; }

            set { tblkAlarmTotal.Text = value; }

        }
    }

-------------------------------------------------------------

No go something about dependancy objects???

A 'Binding' cannot be set on the 'AlarmNameText' property of type 'ZoneMinimum'. A 'Binding' can only be set on a DependencyProperty of a DependencyObject.
David
Top achievements
Rank 1
 answered on 17 Nov 2010
2 answers
128 views
Hi Team,

We are in process of migrating the stranded .Net Win form application to WPF with MVVM here we are using Telerick datepicker we have a requirement  in date picker need to select the date more then 01/01/3000 there should not be restriction. Right now we are able to select the date still 01/01/3000. Please let us know whether Telerick date picker will support more then 01/01/3000 it support need to more details how to implement in our application.

Thanks in advance

Regards
Rajesh Penki
Rajesh
Top achievements
Rank 1
 answered on 16 Nov 2010
1 answer
107 views
Hi,

I need something like an image Viewer for WPF. I want it to have some kind of animation, not too fancy though
I found one salution from DevExpress : http://community.devexpress.com/blogs/theprogressbar/archive/2010/09/20/overview-of-the-new-gallery-control-for-wpf-and-silverlight-coming-in-v2010-vol-2.aspx
I was wondering whether you have something similar to offer

Thank you,
Mariya
George
Telerik team
 answered on 16 Nov 2010
4 answers
144 views
We have IEnumerable<Product> object whose count is 3000. It would take 800 milliseconds to loop through 30 objects. But would take around 1 minute to loop through 3000 objects. I created a RadDataPager and set the page size as 30 and the source to IEnumerable<Product> object whose count is 3000. Then I had set the ItemSource of the grid as PagedSource. I expect RadDataPager to loop through only 30 objects at any given point in time. But unfortunately it loops through entire 3000 objects and defeats the purpose of paging. Am I missing some thing.

Thanks in advance,
Beryl Wilson
Beryl Wilson
Top achievements
Rank 1
 answered on 16 Nov 2010
4 answers
336 views
Hi,

I am using RadMenu for my project, i want when i click on submenuitem the parent menuitem popup should be open.
For Example:

 

 

 

<telerik:RadMenu Grid.Column="1" Grid.Row="1" Height="100" HorizontalAlignment="Left" Margin="98,40,0,0" Name="radMenu1" VerticalAlignment="Top" Width="200" >

 

 

 

 

<telerik:RadMenuItem Header="File" StaysOpenOnClick="True">

 

 

 

 

<telerik:RadMenuItem Header="New" ></telerik:RadMenuItem>

 

 

 

 

<telerik:RadMenuItem Header="Open"></telerik:RadMenuItem>

 

 

 

 

<telerik:RadMenuItem Header="Close"></telerik:RadMenuItem>

 

 

 

 

</telerik:RadMenuItem>

 

 

 

 

<telerik:RadMenuItem Header="Edit">

 

<telerik:RadMenuItem Header="Cut" ></telerik:RadMenuItem>

 

 

 

 

 

 

 

 

<telerik:RadMenuItem Header="Paste"></telerik:RadMenuItem>

 

 

 

 

</

 

 

telerik:RadMenuItem>

 

 

 

 

</telerik:RadMenu>

In the above Radmenu if i click on 'File' menuitem i am able to see 3 Menuitem(New,Open and Close).
When i click 'Open' MenuItem , i want to see the 'File' Popup should be open. I can achieve it by setting 'IsSubMenuOpen' property but in RadMenuItem this property is Readonly.

Please Help me to achieve this ..

Thanks & Regards,
Anita.

 

Nihat
Top achievements
Rank 1
 answered on 16 Nov 2010
5 answers
225 views

Hi,
I am using the gridview for the first time
And I need a simple combobox column

I have List<string> Types collecation that is holding all the types
Now the gridview is populated from data source with column Type (that is string)

All I need is to show the combobox column <telerikGrid:GridViewComboBoxColumn 
with the proper selection of the Type

Tried to do it for a 2 hour...
Please help

Thanks
Maya
Telerik team
 answered on 16 Nov 2010
2 answers
130 views
Hi, I'm having a problem when editing a double number in the TreeListView. The comma separator for our culture is ','. When editing a cell in the grid it changes to '.'. If the new number inserted contains ',' instead of '.' the number returned in the CellEditEnded event handler contains no comma even before I try to parse it to a double.
Kristjan Einarsson
Top achievements
Rank 1
 answered on 16 Nov 2010
2 answers
122 views
Hi,

Is it possible to add image in tooltip content? I want to show an image in tool tip corresponding to the data point value.

I am new with RadChart. Please give sample code if possible.

Thanks,

Shashank Veerkar
shashank
Top achievements
Rank 1
 answered on 16 Nov 2010
2 answers
75 views
HI,

Can I use Telerik Quick Start Theme in my application.
I just want to use Quick start like background and curved centered window to show my chart.


Thanks,

Shashank
shashank
Top achievements
Rank 1
 answered on 16 Nov 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
Expander
Slider
TileList
PersistenceFramework
DataPager
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
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
SplashScreen
Rating
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
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?