I tried to define two resources groups in TimelineViewDefinition. it is similar like TVs and Programmes in sample. But it give a error message said: cannot derive from sealed type 'TimelineViewDefinition'
Just bought the latest version of UI for WPF and can't install it. Receive the following error:
'VS2017PROFESSIONALDIR' is not a valid short file name.
I only have VS 2017 Community Edition installed.
Hello,
Test done with the Office2013 theme.
If I click on the bottom tool bar of the control, outside of the navigation controls, the map moves as if I click on the map!
Regards
Hello,
Here is the display when using the Office2013 theme.
Regards
I am converting a .NET 1.1 Windows Form (mdi) based application to a WPF which is using PRISM as its MVVM framework.
To simulate the mdi behavior, the application needs the ability to open multiple tabs for same view. For example, I have a view displays the person’s name, address, phone, etc.
I used your CustomTabControlRegionAdapter_WPF project as guidance
for creating the region adapter for the
RadTabControl. This seemed to work until
the TabItem view contains another TabsControl.
To ensure it wasn’t something specific with my implementation, I reproduced
the behavior in your sample project.
In the TabItemHomeView.xaml , I added the another TabControl:
<
TextBlock
Text
=
"This is the Home tab content"
/><
br
><
telerik:RadTabControl
><
br
><
telerik:RadTabItem
Header
=
"Tab 1"
></
telerik:RadTabItem
><
br
> <
telerik:RadTabItem
Header
=
"Tab 2"
></
telerik:RadTabItem
><
br
> <
telerik:RadTabItem
Header
=
"Tab 3"
></
telerik:RadTabItem
><
br
></
telerik:RadTabControl
>
When the project runs, it throws an
exception on line 215 of the RadTabControlRegionSyncBehavors.cs: “The
region does not contain the specified view.”
Parameter name: view;
Any additional guidance would be appreciated.
Thanks
Hey guys,
I have a RadGridView in the UI of my application and bind it to a VirtualQueryableCollectionView shown in the example:
https://docs.telerik.com/devtools/wpf/consuming-data/using-data-virtualization
That works fine so far.
Since I have a client/server architecture, it may happen that the server updates the database table collection is "looking" on.
Let's say there are 41 entries in the table after the UI started. Then the server adds one entry to the database. Afterwards the server notifies the client and the client executes "view.Refresh();".
Due to sorting the new entry may appear in the UI BUT the VirtualItemsCount remains 41.
I cannot find any method that allows me to refresh/update the underlying collection so that the collection is synchronized to the database.
Is it possible to achive this behavior or do I have to recreate the VirtualQueryableCollectionView with "view = new VirtualQueryableCollectionView (query);" on each refresh?
I appreciate any feedback :)
Is it possible to set the Positions property using a style?
Here's mine:
<
Style
x:Key
=
"myStyle"
TargetType
=
"telerik:NumericIndicator"
BasedOn
=
"{StaticResource {x:Type telerik:NumericIndicator}}"
>
<
Setter
Property
=
"telerik:ScaleObject.Location"
Value
=
"Inside"
/>
<
Setter
Property
=
"telerik:ScaleObject.RelativeX"
Value
=
"0.225"
/>
<
Setter
Property
=
"telerik:ScaleObject.RelativeY"
Value
=
"0.4"
/>
<
Setter
Property
=
"telerik:ScaleObject.RelativeHeight"
Value
=
"0.4*"
/>
<
Setter
Property
=
"telerik:ScaleObject.RelativeWidth"
Value
=
"1.1*"
/>
<
Setter
Property
=
"Foreground"
Value
=
"#FFCED2E4"
/>
<
Setter
Property
=
"Format"
Value
=
"{}{0:F1}"
/>
<
Setter
Property
=
"Positions"
>
<
Setter.Value
>
<
telerik:NumberPositionCollection
>
<
telerik:FontNumberPosition
CornerRadius
=
"15,0,0,15"
/>
<
telerik:FontNumberPosition
/>
<
telerik:FontNumberPosition
/>
<
telerik:FontNumberPosition
/>
<
telerik:FontNumberPosition
/>
<
telerik:FontNumberPosition
/>
<
telerik:FontNumberPosition
CornerRadius
=
"0,15,15,0"
/>
</
telerik:NumberPositionCollection
>
</
Setter.Value
>
</
Setter
>
</
Style
>
Doesn't seem to work. The NumericIndicator is aligned ok (I can see the rectangle positioned correctly in VS designer) but there are no visible NumberPosition objects.
Properties window shows that the Positions property value is an empty collection, and the little rectangle (after the "..." button) is gray. I.e., not indicating that the Positions property is bound to anything.
Hi,
I am using radgridview in my wpf application.When I drag and drop a column to the group panel, the sorting of groups is not done numerically as it is a string field.
I want the grouped data to be sorted numerically.
Any help would be really appreciated.