Telerik Forums
UI for WPF Forum
133 answers
1.8K+ views

RadCalendar:

RadDiagram:

  • Create custom shapes in the RadDiagram with MVVM - The forum thread elaborates on how to create custom shapes in the RadDiagram following an MVVM approach.
  • Populate the RadDiagramToolbox with custom business data - In this forum thread you can find a sample solution and guidelines on how to populate the RadDiagramToolbox with custom business data and based on the data type drop different objects on the diagramming surface. The attached solution also demonstrates an approach for providing custom information in a SettingsPane tab.
RadGridView:
  • Unfocused state for the selected GridViewRow - With Q2 2012 we have introduced a new Unfocused state for the selected GridViewRow. It will be shown when the GridView is out of focus. If you want to revert to the previous behavior you can check this help article.
RadPivotGrid: RadRichTextBox:
  • Guidelines for Printing with RadDocument - As RadDocument is sometimes used independently of RadRichTextBox to layout content and export it, this article explains the basics of creating a document programmatically.
Dinko | Tech Support Engineer
Telerik team
 answered on 23 Feb 2018
7 answers
142 views
Dear Sir,

We want extend RadPanelBar and RadPanelBarItem to make them multilingual in accordance with our multilingual framework. But problem is that as soon as we extend these classes it do not render at all even if we do not write single line of code in the extended class.

Same problem is also with other controls like Tab Control.

Please suggest us how to resolve this issue.

Regards
Vinay
Dinko | Tech Support Engineer
Telerik team
 answered on 23 Feb 2018
1 answer
135 views

Bing's branding guidelines states, "Bing Maps data provider attribution information can be accessed through the Get Imagery Metadata method in Bing Maps REST Services."

https://www.microsoft.com/en-us/maps/mobile-brand-guidelines

I see there's an imagery metadata classes in RadMaps, but I don't see how to access or use them. Can you provide an example?

Petar Mladenov
Telerik team
 answered on 23 Feb 2018
3 answers
524 views

In one of our applications, we want to restrict access to a configuration page.

Throughout the application, we are using RadWindow.Alert, Confirm and Prompt as our UI messaging system.

We don't need a crazy overdoing of security to restrict the configuration page, but it would be nice if we could change the TextBox of the RadWindow.Prompt to be a PasswordBox so the contents of the box are not visible to anyone looking at the screen.

Is there any way to do this? I would rather stay with the consistent look/behavior of using the RadWindow since we are already using it in several other places.

Thanks!!

Paul

 

Martin Ivanov
Telerik team
 answered on 23 Feb 2018
1 answer
136 views

Hello,

I am trying to spellcheck certain controls in our project. However, whenever I make a call to RadSpellChecker.Check(this.textBox1, SpellCheckingMode.WordByWord), the corresponding spell checking window does not seem to load/open properly (there is just a transparent footprint of the window). Our project uses implicit themes  and we suspect this is causing the problem. On a small test project (no implicit themes), the RadSpellChecker seems to work fine. Thank you.

Tanya
Telerik team
 answered on 23 Feb 2018
5 answers
391 views

I have changed my shell to a RadWindow, the problem is I now get unable to cast to Window in the BootStrapper. Is there a way around this?

 

 

 

 

Darko
Top achievements
Rank 1
 answered on 22 Feb 2018
2 answers
348 views

Hi,

I have some problems to keep selection when using the search functionality of the Grid.

To reproduce the problem:

     - use the BoundSelectColumn of the Telerik sdk sample

     - Hit Ctrl+f to make the search box visible

     - Type 'pool' in the search box and check the 'liverpool' row

     - Clear the search box => all row are displayed and liverpool is checked That's OK

     - Type 'nal' in the search box and check the 'Arsenal' row

     - Clear the search box => all row are displayed and Arsenal is checked but liverpool is not That's KO

 

Why the search functionality is clearing the isSelected property ?

How can i keep it's value between several search ?

 

Thanks

Ced,

Cedric
Top achievements
Rank 1
 answered on 22 Feb 2018
15 answers
224 views
Hello!

I am interesting if there is RadPanorama for WPF?
Alexander
Top achievements
Rank 1
 answered on 22 Feb 2018
9 answers
485 views

I am using the very latest (as of this writing, 5-FEB-2018) Telerik UI for WPF

I just started using the RadColorPicker and saw that it draws text on the button.  I wanted just a button with the chosen color on it.  No text.   I thought it would be just some sort of simple property.  But as far as I can tell, it is not.  Now maybe it's just me but this seems almost fundamental.  Why would you force people to have text on a color selector?   

I see someone asking this very question 6 years ago  ("Why does my colour picker look like a FONT colour picker?").  But even now, six years later I still don't see any sort of simple property to do this.  Am I missing something?

    https://www.telerik.com/forums/why-does-my-colour-picker-look-like-a-font-colour-picker

I downloaded the sample solution that was in that thread .  It uses an obsolete property, so I continued following the instructions and made the adjustments recommended in the "Backwards compatibility" section  It still does not work for me

I saw another thread in which someone tried just putting a color selector inside of a RadDropDownBox.   but that solution is overkill for me.  I want to use the ColorPicker.

I've attached a picture with an example of what I *want* directly above an example of what I'm currently getting.  In the picture, the square next to "Foreground Color" is what I want.  And the square next to "Selected Color" is what I'm getting.

Is there a more up-to-date solution for this?  Or can someone at least tell me what changes to make the the default template


 

Joe
Top achievements
Rank 2
Iron
Iron
Veteran
 answered on 21 Feb 2018
1 answer
601 views

I have a GridView which has several columns. I want to click any row to bring up the row details. I don't want to use  <telerik:GridViewToggleRowDetailsColumn/>.

The reason is that it is put in the first column. What I want is to click any place in the row will show the row details. Click the row again will collapse the details. My plan is to put button in every column. So the common code in every column is 

<ItemContainerTemplate>
                                <Button Command="{Binding OpenDetailsCommand}" /                </ItemContainerTemplate>

The entire code of the RadGridView is:

<telerik:RadGridView Grid.Row="0"
                Name="clubsGrid"
                ItemsSource="{Binding Clubs, Source={StaticResource MyViewModel}}"
                AutoGenerateColumns="False"
                RowDetailsTemplate="{StaticResource RowDetailsTemplate}"
                Margin="5">
        <telerik:RadGridView.Columns>
             
            <telerik:GridViewDataColumn DataMemberBinding="{Binding Name}">
                  <telerik:GridViewDataColumn.CellTemplate>
                          <ItemContainerTemplate>
                                <Button Command="{Binding OpenDetailsCommand}" />
                          </ItemContainerTemplate>
                  </telerik:GridViewDataColumn.CellTemplate>
            </telerik:GridViewDataColumn>
            <telerik:GridViewDataColumn DataMemberBinding="{Binding Established}"
                            Header="Est."
                            DataFormatString="{}{0:yyyy}">
                    <telerik:GridViewDataColumn.CellTemplate>
                          <ItemContainerTemplate>
                                <Button Command="{Binding OpenDetailsCommand}" />
                          </ItemContainerTemplate>
                  </telerik:GridViewDataColumn.CellTemplate>       
            </telerik:GridViewDataColumn>
            <telerik:GridViewDataColumn DataMemberBinding="{Binding StadiumCapacity}"
                            Header="Stadium"
                            DataFormatString="{}{0:N0}">
                    <telerik:GridViewDataColumn.CellTemplate>
                          <ItemContainerTemplate>
                                <Button Command="{Binding OpenDetailsCommand}" />
                          </ItemContainerTemplate>
                  </telerik:GridViewDataColumn.CellTemplate>       
            </telerik:GridViewDataColumn>
        </telerik:RadGridView.Columns>
    </telerik:RadGridView>
</Grid>

The button command is

public ICommand  OpenDetailsCommand = new DelegrateCommand<object>(OpenDetailsStackPanel);
 
private void OpenDetailsStackPanel(object parameter)
{
 
}

The question is the code doesn't reach the method. So what is wrong?

 

 


Dilyan Traykov
Telerik team
 answered on 21 Feb 2018
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?