Hi,
Is there wizard control in MAUI ? or something close ?
I need to show wizard process with option to proceed and go back.
Thanks,
Hi,
I did both these links in order to installed your packages.
Why I need both:
1. https://docs.telerik.com/devtools/maui/get-started/first-steps
2. https://docs.telerik.com/devtools/maui/get-started/install-nuget
Thanks,
Hi,
I looked on this link and I didn't see teaming posibility.
https://docs.telerik.com/devtools/maui/controls/busyindicator/busyindicator-getting-started
Thanks,
Cannot run MAUI sample project in VS 2022 preview 17.2.0 preview 1.0, getting error in every call to InitializeComponent() in xaml code behind class.
https://docs.telerik.com/devtools/maui/demos-and-sample-apps/maui-demo-app
Is there online demo sample to run in browser?
Hallo,
I would like to use MAUI TabView. How to do the style (incl. icon like. e.g. Segoe MDL2 Assets icons) for HeaderText?
Is there any DataTemplate for the HeaderText? How to do the Binding for HeaderText?
Is it possible to load the add the "new Tab" and "Tab content" dynamically?
Regards,
JT
Hi,
Was testing a MAUI app with Teleirk controls for MAUI and works fine on Android but when trying to run on iOS I get an Exception before its even deployed to the simulator. The error is "Severity Code Description Project File Line Suppression State Error MT7091 File 'C:/Users/DanielEvans/.nuget/packages/skiasharp.nativeassets.ios/2.88.0-preview.187/runtimes/ios/native/libSkiaSharp.framework/libSkiaSharp' is not a valid framework: Could not find a part of the path "/Users/danielevans/Library/Caches/Xamarin/mtbs/builds/EventApp/9f4ead0cad4fb87ccfeeeb8ad0da7fa57ca3f4b213dfcc8c083d36d8a3f9ca42/C:/Users/DanielEvans/.nuget/packages/skiasharp.nativeassets.ios/2.88.0-preview.187/runtimes/ios/native/libSkiaSharp.framework/libSkiaSharp". EventApp C:\Program Files\dotnet\packs\Microsoft.iOS.Sdk\15.2.200-preview.12.4\targets\Xamarin.Shared.Sdk.targets 616 "
Any ideas?
Kind regards,
Dan
I create new MAUI project in VS 2012 Preview 5 (MAUI Preview 12).
Add Telerik MAUI 0.4 package.
Add to MainPage BusyIndicator control.
App runing and work properly.
I try add DI support. Modify app and run. Then got error.
When i comment BusyIndicator control in MainPage.xaml then app work properly.
Sample project and error attached.
Some Telerik MAUI controls work properly (e.g. RadBorder, RadButton, RadListView)
Hey
I try to measure the size of a control, when I prefill it with values.
Therefor, I tested with the Microsoft Edit Control, which gives me the correct value, when I do the following code snipset:
Editor locEditor = new();
locEditor.Text = "TEST";
locEditor.FontFamily = this.FontFamily;
locEditor.FontSize = this.FontSize;
locEditor.ToNative(this.Handler.MauiContext);
var locSize = locEditor.Handler.GetDesiredSize(double.PositiveInfinity, double.PositiveInfinity);
locEditor = null;
RadNumericMaskedEntry locEditor = new();
locEditor.Value = "TEST";
locEditor.Handler = this.Handler;
// - Not working: var locSize = locEditor.Handler.GetDesiredSize(double.PositiveInfinity, double.PositiveInfinity);
// - Not working: var locSize = locEditor.CrossPlatformMeasure(double.PositiveInfinity, double.PositiveInfinity);
//- Not working: var locSize = locEditor.Measure(double.PositiveInfinity, double.PositiveInfinity).Request;
locEditor = null;
But when I try to use the RadNumeric, the size always returns 0
What could this be?
THX a lot in advance