564 questions
0
votes
0
answers
23
views
UWP Project in Xamarin Forms Works on C Drive Only in VS 2019
If I create an empty Xamarin Forms project on the C drive, the UWP empty GUI opens. If the solution is created on any other drive get an Exception in System.Private.CoreLib.dll. Cannot get the symbols ...
0
votes
0
answers
178
views
DOMContentLoaded is null in .NET MAUI UWP
I have Xamarin forms UWP app and trying to migrate to MAUI. I am loading a local html to webview. But after migrating there are some errors in my FormsWebViewRenderer. For MAUI I am using WebView2
...
0
votes
0
answers
247
views
The data specified for the media type is invalid, inconsistent, or not supported by this object. (Exception from HRESULT: 0xC00D36B4)
I want to make videos from images in uwp, for this i select some images and made mediaclips of it and adde to mediacompotion. When i Preview the composition in a MediaElement it sometimes gives error.....
0
votes
2
answers
528
views
After upgrading an Xamarin UWP app to Maui the new update refuses to install
This is pretty much exactly what is occurring for me: https://learn.microsoft.com/en-us/answers/questions/1000760/migrate-uwp-app-to-maui-windows-error-after-update?comment=question#newest-question-...
1
vote
0
answers
74
views
Xamarin Forms App freezes on Windows (UWP) when using Frame
I have a Xamarin Forms app that has always worked without any problems. Now problems have suddenly occurred on certain hardware when I want to enter data in an entry - the app freezes completely. ...
0
votes
1
answer
49
views
Setting Font to the DefaultCharacterFormat using uri for the RichEditBox in UWP is raising Exception
public MainPage()
{
this.InitializeComponent();
RichEditBox rbox = new RichEditBox();
Canva.Children.Add(rbox);
rbox.Document.SetText(0, "asdfasfasdfasdfasdfoiuytredfxbnuytrxgd &...
0
votes
1
answer
166
views
error : CopyWin32Resources failed with exit code 500
I am currently working on a UWP application using xamarin and everything has been going well and have now all of a sudden gotten the error below.
1>C:\Users\WiandeJager\.nuget\packages\microsoft....
0
votes
1
answer
90
views
Xamarin UWP Failure has occurred while loading a type only on release build
I try to build my Xamarin UWP app but i get the error
Failure has occurred while loading a type only on release build
I do not know what is the problem, i have a similar UWP app in the Solution and ...
0
votes
1
answer
93
views
Changing the opacity of RichEditBox SelectionHighlightColor is not working in uwp?
changing the opacity of the RichEdibBox's SelectionHighlightColor is not working,
this.editor.SelectionHighlightColor.Opacity = 0.1;
0
votes
0
answers
57
views
How to add a control in order to pass collection elements to another collection in Xamarin.Forms
I need to add a control to the UI in order to have the following:
enter image description here
How can I achieve that?
I tried to find it in the documentation but I wasn't able to.
Can anyone tell me ...
1
vote
0
answers
170
views
Xamarin Multiplaform UWP won't build with error Could not load file or assembly 'System.Private.CoreLib, Version=4.0.0.0, Culture=neutral
I have a Xamarin multi-platform project Android/iOS/UWP. All 3 projects have compiled properly over the past year. Then a few weeks ago the UWP project would not compile with the following Error.
...
0
votes
1
answer
60
views
what is this ambiguous behavior of RichEditBox while setting Link in UWP
public MainPage()
{
this.InitializeComponent();
box1 = new RichEditBox()
{
Width = 500,
Height = 500,
...
0
votes
1
answer
75
views
How to extract all the ranges and link content which have link from the RichEditBox in UWP
Imagine I have RichEditBox string length of 100 and have 10 links set to different sets from the string, now how to extract all the ranges of those 10 Links and the contents of the Links.
I have set ...
0
votes
1
answer
67
views
Vertical Text alignment for RichEditBox in uwp
How to vertically align the text in the RichEditBox in uwp, I've read the whole documentation but could not found how to achieve that.
public sealed partial class MainPage : Page
{
...
0
votes
1
answer
79
views
Xamarin UWP - navigation issue after opening standalone Appwidow
I create an application in which I use multiple standalone window. But I have an issue with navigation after opening a standalone Appwindow.
To open a standalone window I created an interface in Core ...