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
Hi,
I am having an issue with the MAUI controls. When the page calls the InitializeComponent an error is thrown:
{System.IO.FileNotFoundException:
File name: 'Telerik.Maui.Controls.Compatibility.resources'
at System.Reflection.Assembly.Load(AssemblyName assemblyRef, StackCrawlMark& stackMark, AssemblyLoadContext assemblyLoadContext)
at System.Reflection.RuntimeAssembly.InternalGetSatelliteAssembly(Assembly assembly, CultureInfo culture, Version version, Boolean throwOnFileNotFound)}
Any help would be appreciated.
It happens only when this part of the code is in the page, and on Android only. It works on Windows.
<telerikDataGrid:RadDataGrid
Grid.Row="2"
ItemsSource="{Binding StockDropsMessages}"
AutoGenerateColumns="False"
MaximumHeightRequest="200">
<telerikDataGrid:RadDataGrid.Columns>
<telerikDataGrid:DataGridTextColumn PropertyName="Content" HeaderText="StockDrops Messages" />
</telerikDataGrid:RadDataGrid.Columns>
</telerikDataGrid:RadDataGrid>
<telerikDataGrid:RadDataGrid
Grid.Row="3"
ItemsSource="{Binding FilterMessages}"
AutoGenerateColumns="False"
MaximumHeightRequest="200">
<telerikDataGrid:RadDataGrid.Columns>
<telerikDataGrid:DataGridTextColumn PropertyName="Content" HeaderText="Recently Filtered" />
</telerikDataGrid:RadDataGrid.Columns>
</telerikDataGrid:RadDataGrid>
Thanks!
Hi
our interest is using MAUI to host Blazor apps for OS functionality like file acces. We have not been able to find out if xcopy style deployment (usage inside organisation network) is / will be definitively made available like in WinForm.
Anybody have information about that.
Thanks in advance