Telerik Forums
UI for Universal Windows Platform Forum
7 answers
167 views

I have installed Telerik controls for UWP into Visual Studio using NuGet.  The installation worked fine and I am starting to use the RadDataGrid.  

I have also installed the UI for UWP Demos app from the Microsoft Store and am looking at the examples there.  It is very informative to show what the controls can do.  It shows very good code snippets but doesn't have a complete example for downloading and running on my development environment.

I am looking for a way to download just a complete code sample to run locally.  In my case the DataGrid example right now but perhaps other examples in the future.

I have downloaded the TelerikUIForUniversalWindowsPlatformSetup.exe from the Telerik web site but I am hesitant to install this with concern that it will corrupt my already installed Telerik.UI.for.UniversalWindowsPlatform from NuGet.

Please let me know where I can download a complete RadDataGrid for UWP example so I can run locally.

Thank you.

Didi
Telerik team
 answered on 02 Oct 2018
4 answers
61 views

i  have a control 

 <my1:RadNumericBox x:Name="rntxtduplopPisoAlcance"   ValueChanged="rntxtFPDCost_ValueChanged" Maximum="9999"></my1:RadNumericBox>

 

by default the color is blue

 

How can I change the color of the buttons ??

 

Lance | Senior Manager Technical Support
Telerik team
 answered on 10 Jul 2018
1 answer
62 views

In the code I give the link, I've the problem that the list is shown and all items
include image and text as expected. But I can't select them. I thought
at first that they're selected, but with no change in their appearance.
But I found that I don't get the events like SelectedItemChanged, etc.
It seems that something is wrong in my code, but I couldn't find it.
Besides, I need that the buttons which add and remove from the data
source which is an array including the whole info, also update the list.
In another words, any change in data source cause the list to be
updated. I may do this by setting data source to null and setting it
again to the array again. But I think this is not a good idea. Since you
couldn't select any items from the list view, the remove button removes
the first item from the array.

https://www.dropbox.com/s/4ikej8ira712ync/Overlay.7z?dl=0

Hamid
Top achievements
Rank 1
 answered on 26 Apr 2018
3 answers
138 views

Hi There,

I have been playing around with the datagridview in a UWP app I have been creating and noticed when I create a dummy collection of > 50000 items (or so) and bind it to the datagrid, the contents overflow the borders (see picture attached). Is there something I can do to prevent this behaviour?

Side question... is there any reason why there is no selectionmode=Extended for this version of the datagrid view? I've done some extensive searching and found nothing and failed miserably trying to achieve a shift click/ctrl click multiple item selection method myself.

Any assistance would be greatly appreciate.

Cheers,

Stefan Nenchev
Telerik team
 answered on 27 Feb 2018
2 answers
56 views

My application is build using Windows Template Studio, which supports runtime toggle of the requested theme from light to dark.

All standard controls adhere to the changed theme. But Telerik controls seem not to. I have tried to set the RequestedTheme of the Telerik controls directly when the page is loaded, but the property seems to be ignored. They only seem to use the RequestedTheme that is set when the application is initially loaded

 

David
Top achievements
Rank 1
 answered on 15 Jan 2018
1 answer
115 views

Hi ,

 

Is there way to reset the scroll position of RadComboBox. When the user expands the combo box and scrolls down the available options , scroll position is retained even though user has not selected any option. If the combo has large options every time they need to manually move the scroll it to the top. 

 

Please share me any options/properties that i can use to reset the scroll position if the user has not selected any option in the drop down. If the user selects an option the it should scroll to the selected option otherwise it should always stay at the top.

 

Regards,

Prasad.

Stefan
Telerik team
 answered on 09 Nov 2017
1 answer
149 views

We are about to release a new product on Windows store, but this product is currently using the Telerik UI for UWP 2017.2.502.45 and was downloaded from Telerik as "Free Trial".

In past with this "Free Trial" we used to have a popup on app launch saying that we are using a trial and we need to buy license.

With this version of "Free Trial" I do not get any popup anymore.

In the meantime I've read Telerik UI for UWP has gone open source (Apache license), and it means I do not need to buy any license to include Telerik UI for UWP.

 

Is it safe using this "Free Trial" download without buying a license. I do not need the "premium" thing with support. Or should I remove the reference to this trial, and download the open source version from Github?

Stefan Nenchev
Telerik team
 answered on 25 Oct 2017
8 answers
102 views

Is it possible to get the documentation in an offline format? For example, as a PDF or a downloadable git repository?

Thanks.

 

Nasko
Telerik team
 answered on 13 Oct 2017
2 answers
95 views

Hello!

I have a problem running the SlideAnimation animation in the popup control. I get an exception.

 

System.Runtime.InteropServices.COMException: 'No installed components were detected.

Cannot resolve TargetProperty ClipStartXProperty on object.'

 

My code:

    public sealed partial class Page
    {
        public MainPage()
        {
            this.InitializeComponent();
            this.Loaded += MainPage_Loaded;
        }

        private void MainPage_Loaded(object sender, RoutedEventArgs e)
        {


        }

        private void Button_Click(object sender, RoutedEventArgs e)
        {
            RadSlideAnimation animation = new RadSlideAnimation();
            //animation.StartPoint = new Point(0, 0);
            //animation.EndPoint = new Point(200, 200);
            animation.Duration = new Duration(TimeSpan.Parse("0:0:0.500"));
            animation.MoveDirection = MoveDirection.BottomIn;
            animation.Ended += Animation_Ended;
            RadAnimationManager.Play(this.animatedPopup, animation);
        }

        private void Animation_Ended(object sender, AnimationEndedEventArgs e)
        {

        }
    }

 

And second problem with compiler error:

XamlCompiler error WMC0070: Invalid ContentPropertyAttribute on type 'RadAnimationSelector', property 'Animations' is not found

XamlCompiler error WMC0050: Cannot assign 'RadFadeAnimation' into the read only property 'Animations'

My code:

<Page
    x:Class="App1.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:App1"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:telerikCore="using:Telerik.Core"
    mc:Ignorable="d">
    <Page.Resources>
        <telerikCore:RadFadeAnimation x:Key="rectangleFadeAnimation" />
    </Page.Resources>

    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">

        <Rectangle x:Name="animatedRectangle" Width="100" Height="100" Fill="#FF00BDD2">
            <telerikCore:RadAnimationManager.AnimationSelector>
                <telerikCore:RadAnimationSelector>
                        <telerikCore:RadFadeAnimation AnimationName="FadeAnimation" />
                </telerikCore:RadAnimationSelector>
            </telerikCore:RadAnimationManager.AnimationSelector>
        </Rectangle>

    </Grid>
</Page>

 

 

 

Nasko
Telerik team
 answered on 18 Sep 2017
1 answer
69 views

We are looking at using Grid and DataForm controls. However, will the Telerik stewardship be actively developing these controls which are opensourced?

We find that there has been no active development since the announcement made.

The current state is not very comforting. A clarification will be greatly appreciated!

Stefan
Telerik team
 answered on 13 Sep 2017
Narrow your results
Selected tags
Tags
+? more
Top users last month
Mark
Top achievements
Rank 1
Yurii
Top achievements
Rank 1
Leland
Top achievements
Rank 2
Iron
Iron
Iron
Hon
Top achievements
Rank 1
Iron
Deltaohm
Top achievements
Rank 3
Bronze
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Mark
Top achievements
Rank 1
Yurii
Top achievements
Rank 1
Leland
Top achievements
Rank 2
Iron
Iron
Iron
Hon
Top achievements
Rank 1
Iron
Deltaohm
Top achievements
Rank 3
Bronze
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?