Telerik Forums
UI for WPF Forum
3 answers
157 views

How do I get the text to wrap rather than scroll horizontally.

Thanks,

Richard

Byron
Top achievements
Rank 1
 answered on 03 Oct 2020
4 answers
300 views

Hi,

Is it possible to paste some copied data into a RichTextBox as an image like you can in Outlook?

We have  a table in excel that we would like to paste in so it is an image in the RichTextBox rather than an editable table.

I have had a look around the forum and the docs but I can't see anything.

Thanks,

Steve

Martin
Telerik team
 answered on 01 Oct 2020
0 answers
115 views

Hello.

I was asked to make the scheduler show hours for the day in two columns if no grouping is selected.

i;e.: if my day has hours from 8am to 6pm, show two columns for the day: one with hours 8am to 12:59am and one with hours from 1pm to 6 pm. much as you can find in any mid sized scheduling book.

 

Is there a way to do that? or any hints to how to... 

Thanks in advance...

Richard
Top achievements
Rank 1
Iron
 asked on 30 Sep 2020
3 answers
337 views

Good day,

Is there a way I can access the filter value used in the GridView and Show it to other part of my page? Just like the SelectionBox of RadMultiColumnComboBox with the column and operation used?

Thank you.

Dinko | Tech Support Engineer
Telerik team
 answered on 30 Sep 2020
2 answers
310 views

We are using the Teleik rad gridview in our WPF application but we are experienceing a memory leak. The problem with this leak is that i'm not able to reproduce it in a example application so i cannot send anything. Below is the information I get using dotMemory:

 

Type, Allocated bytes, Allocated objects, Collected bytes, Collected objects
Telerik.Windows.Data.WeakEvent+WeakListener<System.ComponentModel.PropertyChangedEventArgs>, 81600, 3400, 79200, 3300
2 (2x24bytes)

Telerik.Windows.Data.WeakEvent+WeakListener<System.Collections.Specialized.NotifyCollectionChangedEventArgs>, 72000, 3000, 69600, 2900
2 (2x24bytes)

Because I am not able to reproduce the issue I wonder if you guys can give me some tips and pointers about how to diagnose this problem. Below you'll find information about the OS, Visual studio version and the used telerik version. The backtrace does not contain any of our own code.

Windows 10

Visual Studio 2015

.net framework 4.6.1 C#

Telerik version:2019.1.220.45

 

Marco
Top achievements
Rank 1
 answered on 30 Sep 2020
1 answer
439 views
Hi,

I have a problem with the window loading time. I only have a RadGridView with no data connection. Empty window loading time before mapping to data is 0.6s. In Visual Studio, using Performance Profiler, Inoticed that when loading the window, all styles that can be used in the application are parsed. Start time has increased by 0.6s. It is too long for my solution.

Is there a way to prevent the program from loading all the styles at startup?
Vicky
Telerik team
 answered on 30 Sep 2020
1 answer
160 views

Hi,

I'm wondering if there is a way to segment a RadCartesianChart based on specific units of time (minutes, hours, days, months, years).

For example, lets say I select the count of product orders for every month over a 4 year timespan (2012-2015). With that selection, I will have 48 points of data displayed on my line chart. As a user, I would like to view how our order numbers compare on a year-by-year basis, while still seeing the order counts for the specific months. I select an option that specifies Segment = Year. My resulting chart should look like the attached image.

Is something like this possible with RadCartesianChart?

 

Martin Ivanov
Telerik team
 answered on 30 Sep 2020
3 answers
123 views

ScheduleView is not maintaining the point where it was scrolled.

I am facing this issue in such conditions:

1) ScheduleView is scrolled on max amount horizontally.(scheduleview.jpg).

2) CustomRadDocking.DocumentHost>

Sidebar is pinned. Please note width of ScheduleView is changed automatically when sidebar is pinned. (sidebar_pin.jpg)

3) Unpin Sidebar. Now ScheduleView is not scrolled to the max amount. (scheduleview_scroll.jpg)

The layout is like this:

<custom:CustomRadDocking  RetainPaneSizeMode="DockingAndFloating"
Grid.Row="3"
Margin="0"
BorderThickness="0"
Padding="0"
controls:AnimationManager.IsAnimationEnabled="False"
controls:AnimationManager.AnimationSelector="{x:Null}"
CloseButtonPosition="InPane"
DragDropMode="Immediate">

<custom:CustomRadDocking.DocumentHost>

<telerik:RadSplitContainer>

<telerik:RadPaneGroup IsContentPreserved="True"
BorderThickness="0"
Margin="0"
Align="Justify"
AllTabsEqualHeight="True"
DocumentHostTemplate="{StaticResource DocumentHostWithoutBorders}"
Padding="0">
<telerik:RadDocumentPane Visibility="Collapsed"
CanUserClose="False"
BorderThickness="0"
Margin="0"
Padding="0"
Title="Gantt">
<telerik:RadDocumentPane.Content>
<DockPanel x:Name="Schedule_Root">
<AdornerDecorator>
<telerik:RadScheduleView x:Name="ScheduleControl"/>

</telerik:RadDocumentPane.Content>
</telerik:RadDocumentPane>
</telerik:RadPaneGroup>
</telerik:RadSplitContainer>
</custom:CustomRadDocking.DocumentHost>

<telerik:RadSplitContainer controls:DockingPanel.InitialSize="454,150"
InitialPosition="DockedRight">
<telerik:RadPaneGroup IsContentPreserved="True"
Align="Justify"
AllTabsEqualHeight="True"
Name="ExpandiblePanels">
<telerik:RadPane Header="Sidebar" />

</telerik:RadPaneGroup>
</telerik:RadSplitContainer>
</custom:CustomRadDocking>

Dinko | Tech Support Engineer
Telerik team
 answered on 30 Sep 2020
1 answer
190 views

I have the following Slider. The rangeslider thumb does not respect the 0.1 distance between the start and end thumbs, the minimum space is 0 instead of 0.1 as I want.. What am I doing wrong?

<telerik:RadSlider
      x:Name="RadSlider"
      Margin="0,0,0,6"
      VerticalAlignment="Bottom"
      AutoToolTipPlacement="TopLeft"
      DragCompleted="RadSlider_OnDragCompleted"
      IsMoveToPointEnabled="False"
      IsSelectionRangeEnabled="True"
      Maximum="1"
      Minimum="0"
      MinimumRangeSpan="0.1">
      <telerik:RadSlider.Thumbs>
           <telerik:RangeSliderThumb
               x:Name="RangeSliderThumb"
               AlternateThumbStyle="{StaticResource EndThumbStyle}"
               InteractionMode="Lock"
               MiddleThumbStyle="{StaticResource MiddleThumbStyle}"
               MinimumRangeSpan="0.1"
               ThumbStyle="{StaticResource StartThumbStyle}" />
           </telerik:RadSlider.Thumbs>
</telerik:RadSlider>
Yoan
Telerik team
 answered on 30 Sep 2020
5 answers
124 views

Hi,

Can't seem to find the way to set CommandButtonsVisibility from code behind. I'm building a user control with dynamic behavior the DataForm.
In XAML it's easy and working.

Anybody that has an idea?

Thanks in advance!

Kurt

Martin Ivanov
Telerik team
 answered on 30 Sep 2020
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
VirtualKeyboard
HighlightTextBlock
Security
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?