Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
261 views

I'm an absolute nebie in Uno Platform and did first steps to refresh my XAML knowledge. Based on the default multiplatform Uno template I built a page where I bound a TextBox to a string property. The ...
CSharper's user avatar
  • 534
1 vote
1 answer
275 views

i'm trying to create a Custom Shape (Triangle) but I can't find the right way to get a Custom Shape working. In WPF I'm used to overriding DefiningGeometry, but using WinUI 3 there is nothing like it. ...
Florian_Schaf's user avatar
0 votes
1 answer
700 views

To simplify my scenario, I have a label and a button in a MAUI application. And I want to update the label text through mainpagehelper class instead of mainpage class. MainPage.xaml: <Button x:...
Mounika's user avatar
  • 471
1 vote
1 answer
1k views

I added a button component in my application, and I am expecting it to change the color when user hovers on it or click it. But looks like that's not the default behavior of the button. Is there a way ...
Mounika's user avatar
  • 471
1 vote
1 answer
352 views

This question comes from this related question. One way to access your nested inner control, is to create dependency-properties in the outer control and pass values to the inner control. How can I ...
Andrew KeepCoding's user avatar
5 votes
1 answer
3k views

can someone please tell me the exact difference between FallbackValue and TargetNullValue? I know they are quite similar, but I'd like to understand more about those edge usecases where you want to ...
AtosNicoS's user avatar
  • 183
0 votes
1 answer
544 views

I have a ListView in a WinUI 3 app (target framework net6.0-windows10.0.19041.0) with a data template that contains a TextBox. The ItemsSource is bound to an ObservableCollection in the code-behind ...
Gabriel S.'s user avatar
  • 1,337
0 votes
1 answer
108 views

I am wanting to write a user control that contains a customizable CommandBar. There are standard items which are always present in the command bar, and the page hosting the user control can define ...
Sam's user avatar
  • 4,359
0 votes
0 answers
223 views

I've started migrating company owned application from UWP 10 to WinUI (on NET5) using upgrade-assistant tool. Give or take, the most conflicts are gone, but the the nasty one remains in .xaml files. ...
Serge Misnik's user avatar
5 votes
3 answers
11k views

I want to try the Community Toolkit 8.0 the MVVM part. I have a very simple application: .... d:DataContext="{d:DesignInstance Type=local:MainWindowViewModel}" .... <Grid> ...
Enki's user avatar
  • 59
0 votes
1 answer
757 views

I had bind the error method property with text-block so that when error occurs it is shown down the textbox in the form. But i also want to change the background color of the textbox when the error ...
Abhinaw Anand's user avatar
5 votes
4 answers
3k views

I'm pretty sure I have all the right flags and everything set according to Microsoft Docs, however the UI dlls are not being included in the single file exe.
nathanAjacobs's user avatar
4 votes
2 answers
4k views

Does WinUI 3 have the feature to add desktop notifications? See reference (see below)
briannarich's user avatar
3 votes
1 answer
3k views

namespace MyApp { public sealed partial class MainWindow : Window { AppWindow m_appWindow; public MainWindow() { this.InitializeComponent(); ...
BillJobs's user avatar
4 votes
3 answers
3k views

How can I remove the close button in WinUI 3? Screenshot of WinUI 3 App
hardlycom.m's user avatar
0 votes
1 answer
64 views

I have the datatemplate: <DataTemplate x:Key="ItemWithCanvas" x:DataType="itemVM"> <Canvas> <Grid x:Name="common"> ...
Hoka Biu's user avatar
0 votes
1 answer
205 views

Example I have 4 images, I want to make a button to switch view for displaying those images: view1(view1.xaml) as uniform grid(2x2), view2(view2.xaml) as listview(1x4), and 2 views use the same ...
Hoka Biu's user avatar
10 votes
2 answers
12k views

I have bound button command to one RelayCommand from MVVM Toolkit, which executes some function, with following: [RelayCommand] private async void SomeMethod() {} I want to prevent multiple clicks on ...
Guezt's user avatar
  • 157
0 votes
1 answer
119 views

I have created a Uwp App that is directly referenced in the NetCore3.1 Winforms application. I used XamlHost to show custom control in Winforms. When I run the application it shows particular control ...
Pradeep's user avatar
  • 40
2 votes
1 answer
2k views

I am want to create a deep link like some-app://localhost?user=123455 that when clicked opens a Maui WinUI app. When the app receives this deep link I want to be able to get the user ID off of the ...
Meridith Spellerberg's user avatar
3 votes
1 answer
341 views

No changes occur when you try to change the font size of the Message property of the InfoBar class with the FontSize property. Problem Font size has not changed Source Code <InfoBar Severity=&...
dressnature's user avatar
0 votes
1 answer
1k views

I have an ItemsRepeater on the page's XAML code where it's ItemsSource property is bind to a list of User Control (ObersvableCollection), a custom control I made. In this User Control there's a button ...
eduardobragaxz's user avatar
0 votes
0 answers
1k views

I have a common library foo.common with some *.pngs stored as Embedded Resource or Resource. Now I would like to show them in my foo.ui WinUI3 application. I can't get any further at the moment. I've ...
Dominic Jonas's user avatar
1 vote
3 answers
1k views

Problem Since WinUI 3 currently has no function to set the minimum size, I have to use WM_GETMINMAXINFO. Question How can I specify WM_GETMINMAXINFO minimum or maximum window size with C# in a WinUI 3 ...
user avatar
1 vote
0 answers
188 views

I am trying to use JUCE as a dll backend for a WinUI app. I managed to make it work but it sometimes(almost randomly, because I can't find a pattern, it looks like a timeout) throws ...
Adi Călăvie's user avatar

1
9 10
11
12 13
15