Telerik Forums
UI for WPF Forum
3 answers
309 views

Hi to all,

how can I find a RadWindow that has focus?

We have MainView that opens several RadWindow, but I need to know which is focused, because may have central command to operata on it.

Can I use RadWindowManager?

Everything else?

 
Nasko
Telerik team
 answered on 14 Apr 2016
1 answer
141 views

Hi,

I'm try to customize the dialog to create or edit appointments if I do a coubleclick on the schedule. 

I try two approches.

1. Create a EditAppointmentDialogStyle and EditAppointmentTemplate. So the template shows the content what I want. But I can't set a custom header on the dialog over the EditAppointmentDialogStyle .

2. Create a custom ScheduleViewDialogHostFactory. Here is the problem that I can't set a custom control as a template.

protected override IScheduleViewDialogHost CreateNew(ScheduleViewBase scheduleView, DialogType dialogType)       {           var window = new ShiftWindowDialogHost()           {               

             //                Content = new SchedulerDialog(),               

          Content = ServiceLocator.Current.GetInstance<UserManagement>(),               

            ScheduleView = scheduleView,               

             Header = "What a charm"           };           

    StyleManager.SetThemeFromParent(window, scheduleView);           

return window;       }

I get the exception

System.InvalidOperationException: 'SchedulerDialog' TargetType does not match type of element '.
   at System.Windows.Style.CheckTargetType(Object element)

 

Nasko
Telerik team
 answered on 14 Apr 2016
9 answers
244 views

How come when I changed my chart from scatter line series to spline series, the graph is still show as scatter line?  Is there any special thing with horizontal axis?  With the scatter line series, both horizontal axis and vertical axis are LinearAxis.  When I change to Spline series, I must change to CategoricalAxis, otherwise the graph will not show.

Thanks,

Steve

Steve
Top achievements
Rank 1
 answered on 14 Apr 2016
4 answers
540 views

Hello,

I am trying to set up a WPF RadGridView with cell validation.  I have bound the "CellValidating" event, and within it, when data fails a check, I set the "ev.ErrorMessage" to the message I want displayed, and set "ev.IsValid" to false.  This marks the input element with a red border and a little triangle in the upper right corner.  When mousing over the triangle, it shows the tooltip. 

What I want is for that tooltip to remain shown at all times the same way that the errors are displayed when an exception is thrown while parsing data.  Is there a way of achieving this? 

Gord
Top achievements
Rank 1
 answered on 13 Apr 2016
2 answers
279 views

I'm running into a very odd problem that I am finding impossible to debug. I use customized column autogeneration of the RadGridView. Basically, on binding, it looks at each object that it is bound to and customizes the column based on attribute metadata decorating each property of the bound object. This all works fine.

In the app, I have a ComboBox which when a different item is selected, it changes the data source of the grid, clears the columns, and toggles the autogenerate property of the grid so that it generates columns based on the new data source. This code looks like this:

        private async void Grid_OnDataLoading(object sender, GridViewDataLoadingEventArgs e)
        {
            var grid = (RadGridView)sender;
            if (grid.AutoGenerateColumns != true) return;


            grid.Columns.RemoveItems(grid.Columns.Cast<GridViewColumn>().Where(c => c.GetType() != typeof(GridViewToggleRowDetailsColumn)).ToArray());
            grid.AutoGenerateColumns = false;
            grid.AutoGenerateColumns = true;  //Throws here
        }

This code works normally when the app first loads. It only throws when the ComboBox is toggled and the grid's source is changed. Even more bizarre, it used to work fine in all situations, but at some point some change was introduced to the codebase somewhere which is now producing a bizarre error.

On the call to grid.AutoGenerateColumns = true, it is now throwing an exception, saying "No target found for method AutoGeneratingColumn". And it is Calburn Micro throwing this error, which I have no idea why this would it would even be involved in this process.

Any advice on how to debug this further would be really appreciated, as I've spent a lot of time on it and am at a total loss. Thanks.

Sam
Top achievements
Rank 1
 answered on 13 Apr 2016
2 answers
168 views

Hi All,

Currently using the RadCalendar control, we would like to display and focus on the Selected Date only,

I have been able to use IsTodayHighlighted="False" however if my selected date is in a different month, I still get the current month showing.

The Aspnet-Ajax calendar control has a FocusedDate property, is there any thing similar in the WPF control.

Many thanks

Nasko
Telerik team
 answered on 13 Apr 2016
2 answers
294 views

Apparently the worksheet's Cells.CellPropertyChanged event is not raised when a cell with a formula is recalculated because one of the source cells was changed. Is there any way of getting notified in this situation?

 

Fabrice
Top achievements
Rank 1
 answered on 13 Apr 2016
1 answer
329 views

design a simple (no fancy/shining color change), comfortable, friendly (easy-to-use) user interface for a WPF desktop application (by MVVM pattern) by C# in VS2013 on win 7

I would like to design a WPF desktop application by C# in VS2013 on win 7.

I need to design an UI look like this attached example blow. I have checked the WPF toolbox in VS2013, I do not find a layout template that can provide an UI like this.

In order to design a simple, comfortable and friendly (easy-to-use) user interface, I have checked the links :

       prism http://compositewpf.codeplex.com/
        http://stackoverflow.com/questions/2135092/creating-a-nice-gui-in-wpf>
        http://ux.stackexchange.com/questions/10776/where-can-i-find-a-gallery-of-wpf-ui-examples

But, they are not a good fit for my application.

I need a user interface :
      1. some tool menus on the top such as "File", "Edit", "project", "tool" , "help", which look much like the most popular UI style in MS office tools.
      2. some shortcut icons for some hot uses below the tool menu
      3. The  left panel are separated into 3 parts : left, middle, right
      4.  Each part size can be changed by holding the vertical separator
      5 . Each part is separated into 2 vertical parts
      6. In left-upper part, there some tree-view buttons, when a button is clicked, a detailed subtree buttons are shown at the left-lower part.
     7. In the middle part, some data chart, tables, curves are shown at the upper-part and the related detailed data are shown at the lower-part.
     8. In the middle part, I need multiple tabs to show the data and charts
     9. In the right-part, it holds some animations related to the data shown in the middle part.
     10. the color of the application should be consistent, simple and flat (not much gradient change, e.g. ligth-gray is fine), not so fancy like prism.

Are there some templates similar like this ? 

Any suggestions ? Thanks !

 

Martin Ivanov
Telerik team
 answered on 13 Apr 2016
3 answers
396 views

Dear Support,

I try to use filtering but in distinct value area the values are not appear.
Any idea why?

Here is my xaml code:

<telerikGridView:RadGridView Grid.Row="1" Margin="5" x:Name="SearchGrid" AutoGenerateColumns="False"
             ItemsSource="{Binding Path=ValuesOfQuestions, Mode=OneWay}"
             DistinctValuesLoading="SearchGrid_DistinctValuesLoading"
             IsReadOnly="True" IsFilteringAllowed="True" ShowGroupPanel="False"
             ShowColumnFooters="False" ShowColumnSortIndexes="True">
 <telerikGridView:RadGridView.Columns>
     <telerikGridView:GridViewDataColumn x:Name="ID" Header="ID" ShowDistinctFilters="True" DataMemberBinding="{Binding Path=ID}" />
     <telerikGridView:GridViewDataColumn x:Name="Date" Header="Date" DataMemberBinding="{Binding Path=Date}" />
     <telerikGridView:GridViewDataColumn x:Name="Value" Header="Value" DataMemberBinding="{Binding Path=Value}" />
 </telerikGridView:RadGridView.Columns>
 </telerikGridView:RadGridView>

XAML code behind:

private void SearchGrid_DistinctValuesLoading(object sender, GridViewDistinctValuesLoadingEventArgs e)
        {
            e.ItemsSource = ((Telerik.Windows.Controls.RadGridView)sender).GetDistinctValues(e.Column, false);
        }

C# code:

public class ValuesOfQuestion
    {
        public int ID { get; set; }
        public string Value { get; set; }
        public DateTime Date { get; set; }
    }
 
     ValuesOfQuestions = new ObservableCollection<ValuesOfQuestion>();
for (int i = 0; i < 10; i++)
     {
      ValuesOfQuestions.Add(new ValuesOfQuestion { ID = i, Date = DateTime.Now, Value = "Value " + i.ToString() });
     }

And I attached a picture for my problem.

Thanks,

Robert.

Yoan
Telerik team
 answered on 13 Apr 2016
3 answers
273 views

Hi, 

how can I make tabs on the left side that are per default collapsed (see picture) and which should expand to the right side resizing the rest of the window (Grids, etc). I've made the tab on the left side setting TabStrip left but I can't do the rest. there is no collapse property on the tab? 

 

telerik:RadTabControl   Align="Right" BackgroundVisibility="Collapsed" TabStripPlacement="Left" Grid.RowSpan="4" Grid.Row="1" >
            <telerik:RadTabItem  Header="Something" >
                <telerik:RadTreeView Grid.Row="1" IsDragDropEnabled="True"   Grid.RowSpan="4" >
                    <telerik:RadTreeViewItem Header="Football" />
                    <telerik:RadTreeViewItem Header="Tennis" />
                    <telerik:RadTreeViewItem Header="Cycling" />
                    <telerik:RadTreeViewItem Header="Basketball" />
                </telerik:RadTreeView>
            </telerik:RadTabItem>
        </telerik:RadTabControl>

 

 

Ivan
Telerik team
 answered on 13 Apr 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
Expander
Slider
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
Licensing
WebCam
CardView
DataBar
FilePathPicker
PasswordBox
Rating
SplashScreen
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
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?