Telerik Forums
UI for WPF Forum
1 answer
79 views
Hi, I'm using the default OpenDocumentCommand to open a file, I was wondering is there a way to get that file name and save it to a public variable? 
Tanya
Telerik team
 answered on 28 Mar 2016
1 answer
123 views
i want add RangeBarSeries in CategoricalSeriesDescriptor.

This is possible?

Dinko | Tech Support Engineer
Telerik team
 answered on 28 Mar 2016
1 answer
229 views

Hi

Could anyone give me a WPF example of using the RadWizardCommands? I have defined the wizard in XAML and would like to receive the commands (MoveCurrentToNext, Finish, etc.) in the view model.

Thank you.

Adrian

Stefan
Telerik team
 answered on 28 Mar 2016
5 answers
254 views
Do all Telerik WPF controls comply with Section 508?
Yana
Telerik team
 answered on 28 Mar 2016
2 answers
218 views
Hi! Can anybody tell me which MVVM framework is more comfortable to build a WPF application where DevCraft Complete library is used ? I'm interested in Prizm and Catel. So which one of them is more convenient when DevCraft Complete library is used ? Your help and tips will be appreciated highly.
Eugene
Top achievements
Rank 1
 answered on 28 Mar 2016
2 answers
112 views
I have an WPF MVVM Catel project with five Views: View_1, View_2, View_3, View_4 and View_5. Each View is implemented as catel:UserControl and has appropriate Model and ViewModel. There is a telerik:RadCartesianChart presenting diagram changing in real time in each View. There is also a catel:Window in my application that is the application main window. There is RadPanelBar in the application main window XAML. This RadPanelBar has five instances of telerik:RadPanelBarItem in XAML. I'm in need of binding of each telerik:RadPanelBarItem to appropriate View. For example: first RadPanelBarItem to View_1, the second one to View_2 e.t.c. Please give me a reference to example of that binding. Thank you very much in advance.
Eugene
Top achievements
Rank 1
 answered on 28 Mar 2016
3 answers
3.3K+ views

.I have the following error when I use RadChartView: 'System.Windows.Markup.XamlParseException' in PresentationFramework.dll with message: "Could not load file or assembly Telerik.Windows.Controls.Chart, PublicKeyToken=5803cfa389c90ce7 or one of its dependencies. The system cannot find the file specified". Below is UserControl XAML code where the exception is thrown.

<UserControl x:Class="DeviceStatus.Views.DeviceStatusView"
             xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:prism="http://prismlibrary.com/"             
             prism:ViewModelLocator.AutoWireViewModel="True">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition/>
            <RowDefinition/>
        </Grid.RowDefinitions>
        <Grid.ColumnDefinitions>
            <ColumnDefinition/>
            <ColumnDefinition/>
        </Grid.ColumnDefinitions>

        <Label Grid.Row="0" Grid.Column="0" Content="Состояние прибора" VerticalAlignment="Bottom"/>
        <TextBox Grid.Row="0" Grid.Column="1" Text="{Binding DeviceStatusModel.Header}" AutomationProperties.AutomationId="DeviceStatusTextBox"/>

        <telerik:RadCartesianChart Grid.Row="1" Grid.Column="0">
            <telerik:RadCartesianChart.HorizontalAxis>
                <telerik:LinearAxis/>
            </telerik:RadCartesianChart.HorizontalAxis>
            <telerik:RadCartesianChart.VerticalAxis>
                <telerik:LinearAxis/>
            </telerik:RadCartesianChart.VerticalAxis>
        </telerik:RadCartesianChart>

    </Grid>
</UserControl>

I develop my WPF MVVM application using Prism 6. I use MS VS 2015 Professional as IDE. I had created the my app solution and shell project there using Prism Template Pack. The type of solution is Prism Unity App. After its creation I added Prism Module (WPF) and then added Prism UserControl (WPF) in Views folder of the Prism Module. XAML markup of this UserControl is shown above. Why does this error occur? Please help me eliminate it.

Eugene
Top achievements
Rank 1
 answered on 28 Mar 2016
1 answer
163 views

Hi!

I had a trouble as the following.

Simply make a WPF app and work fine with RadWindow.Alert('good').

But, It freeze my app(nothing I can control, it just was frozen) when I have a breakpoint before showing radwindow. Could I fix it?

  private void button_Click(object sender, RoutedEventArgs e)
  {
   Debugger.Break();
   RadWindow.Alert("freeze");
  }

 

Best regards

Nasko
Telerik team
 answered on 28 Mar 2016
2 answers
198 views

Hi, I am using the implicit style "VisualStudio2013" and I want to change the appearance of an entire window based upon whatever preset I've loaded.

For some reason, when I load the presets, only the RadButtons and the RadPropertyGrid change their appearance. Everything else (RadGridView, RadTreeListView, RadMenu) just keep the standard theme.

What extra steps do I need to take to fix this?

Many thanks,

M.Young

Class MainWindow 
 Private Sub RadButton_Click(sender As Object , e As RoutedEventArgs)    Telerik.Windows.Controls.VisualStudio2013Palette.LoadPreset(Telerik.Windows.Controls.VisualStudio2013Palette.ColorVariation.Light)
 End Sub
 
Private Sub RadButton_Click_1(sender As Object , e As RoutedEventArgs) Telerik.Windows.Controls.VisualStudio2013Palette.LoadPreset(Telerik.Windows.Controls.VisualStudio2013Palette.ColorVariation.Dark)<End Sub
 
Private Sub RadButton_Click_2(sender As Object , e As RoutedEventArgs)     Telerik.Windows.Controls.VisualStudio2013Palette.LoadPreset(Telerik.Windows.Controls.VisualStudio2013Palette.ColorVariation.Blue)End Sub
End Class

<Window x:Class="MainWindow"
xmlns:telerikcontrols="clr-namespace:Telerik.Windows;assembly=Telerik.Windows.Controls"
Title="MainWindow" Height="350" Width="857.951">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="13*"></RowDefinition>
<RowDefinition Height="147*"></RowDefinition>
</Grid.RowDefinitions>
<telerik:RadMenu>
<telerik:RadMenu.Items>
<telerik:RadMenuItem Header="Test">
<telerik:RadMenuItem Header="Test">
</telerik:RadMenuItem>
</telerik:RadMenuItem>
<telerik:RadMenuItem Header="Test">
</telerik:RadMenuItem>
<telerik:RadMenuItem Header="Test">
</telerik:RadMenuItem>
<telerik:RadMenuItem Header="Test">
</telerik:RadMenuItem>
</telerik:RadMenu.Items>
</telerik:RadMenu>
<StackPanel Orientation="Horizontal" Grid.Row="1" Margin="10">
<telerik:RadButton Width="100" Content="Light" Click="RadButton_Click"></telerik:RadButton>
<telerik:RadButton Width="100" Content="Dark" Click="RadButton_Click_1"></telerik:RadButton>
<telerik:RadButton Width="100" Content="Blue" Click="RadButton_Click_2"></telerik:RadButton>
<telerik:RadPropertyGrid Width="150" />
<telerik:RadGridView Width="150"/>
<telerik:RadTreeListView Width="150"/>
</StackPanel>
</Grid>
 </Window>

Hazy
Top achievements
Rank 1
 answered on 26 Mar 2016
0 answers
61 views
Atomic Whois Explorer is a program that enables you to search through the global Whois database and automatically extract the contact information of domain name administrators or website owners. the program displays a list of email addresses that you can save on your clipboard or as a Word/Excel file. The software is included in Internet & Network Tools. You can easily switch between the main features of the program, such as explore domains, check out a domain list, and export data. The utility gives you the option to export data to a text file, copy it to the clipboard so you can easily paste it into other third-party programs, as well as save it to DOC or XLS file format.

softwares Coupons gives Discount -  So  you save money with this 20% Discount on  Atomic Whois Explorer software.

Official website :-  softwarescoupons(DOT)com/atomic-whois-explorer-discount-coupons/

Hurry offer for limited period!!!
Franklin
Top achievements
Rank 1
 asked on 26 Mar 2016
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
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
WebCam
CardView
DataBar
Licensing
FilePathPicker
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
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
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?