Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
46 views

In extension to this question How to unify ScrollViewer Scroll across two columns? I have implemented this correctly. For mouse scroll events and trackpad scroll events the ...
Bevara Satyasairam's user avatar
3 votes
1 answer
77 views

I am working on a winui3 app where I wanted to remove the opening and closing animations of a Content Dialog. I tried removing the visual transactions but the animations still exists. Am I doing the ...
Bevara Satyasairam's user avatar
2 votes
2 answers
80 views

I am trying to display items in a WinUI 3 ComboBox using SelectedValuePath and DisplayMemberPath. However, the ComboBox does not show the initial selected value. <ComboBox x:Name="...
kinton's user avatar
  • 409
-1 votes
1 answer
69 views

I have created a calenderview in winui3 for my project. I am setting the selected date in the code behind file. But the calendar is not bringing the selected date into view. How to fix this? If I set ...
Bevara Satyasairam's user avatar
1 vote
2 answers
104 views

I have created a custom control in winui3 and in OnApplyTemplate() i have subscribed for few events. How to unsubscribe these events? . I have tried it in unloaded event but unloaded event is called ...
Bevara Satyasairam's user avatar
1 vote
1 answer
73 views

I’m working on an app that is delivered for both platform UWP and WinUI 3. In UWP, when I misspell or provide an invalid FontFamily, it seems to fall back to Segoe UI Variable. However, in WinUI 3, ...
Rafael Nunes's user avatar
2 votes
1 answer
93 views

I got an issue following WinUI tutorial. I followed the tutorial step-by-step with copy-and-paste code completion but, reaching the step "Create a page for a note" (specifically the point &...
El See's user avatar
  • 23
1 vote
1 answer
114 views

I have a WinUI application, which uses Newtonsoft.Json for json serialization and use x:Bind for binding the value to xaml UI. There are various UI elements like, listview, gridview, buttons, ...
Akilan's user avatar
  • 156
1 vote
1 answer
70 views

I am working with ItemsView for a while. I wanted to change the selecteditem's style and hoverstyle for the remaining items. The unwanted thin lines are displaying on the right side and bottom of the ...
Bevara Satyasairam's user avatar
1 vote
1 answer
72 views

ItemsRepeater Layout can be changed to UnformGridLayout which makes the items to evenly distribute in the available space. <ItemsRepeater XYFocusKeyboardNavigation="Enabled" ...
Bevara Satyasairam's user avatar
0 votes
2 answers
82 views

I want to change the Background color of my ListViewItems based on the value of the boolean property EstaGuardado of my model class Permiso. namespace Modelo.Autenticacion { public class Permiso ...
Larjos's user avatar
  • 1
1 vote
0 answers
59 views

I have an ItemesView with binding collection. I styled the DataTemplate for it with root element ItermContainer, but at attempt to provide some VisualState for it it just doesn't work. How to make ...
Cobret's user avatar
  • 64
1 vote
2 answers
153 views

I am developing a WinUI 3 application and would like to use TextBoxExtensions.Mask from the Windows Community Toolkit to restrict input to IP addresses. For example: 192.1.1.0 or 255.255.255.255. I ...
kinton's user avatar
  • 409
1 vote
1 answer
113 views

I want to change the transparency of the overlay displayed on the parent window when the ContentDialog is open. I am using WinUI 3. I have looked into generic.xaml and tried changing a few things, but ...
kinton's user avatar
  • 409
0 votes
0 answers
77 views

I'm working this bug in a Winui 3 application. As you can see in the following code example, when check/uncheck the "DefaultProgramCheckBox", the SetValue of Variable "DefaultProgram&...
Ming's user avatar
  • 595
1 vote
1 answer
184 views

I am displaying a ListView using WinUI3. I am showing an array of structs, but is it possible to display an array index that is not part of the struct in XAML? <ListView> <ListView....
kinton's user avatar
  • 409
1 vote
3 answers
135 views

I want to create a horizontally scrollable ListView with a selection indicator located at the top or bottom. Can I achieve that by restyling ListViewItemPresenter or anyhow else reusing it?
XperiAndri's user avatar
  • 1,250
0 votes
1 answer
89 views

I am creating a Usercontrol that has a Combobox in it. <UserControl> ... <ComboBox HorizontalAlignment="Stretch" Name="ReasonComboBox" ...
karmelcorn's user avatar
0 votes
0 answers
178 views

i am trying to create a desktop app using python firstly i create a folder and next open in vs code and create files like winui.py and page.xaml and then run this code and give me some related to ...
DINESH KUMAR's user avatar
0 votes
1 answer
83 views

The TextBox control (Microsoft.UI.Xaml.Controls.TextBox) exposes an "IsReadonly" property, which seems to differ from !IsEnabled in the following ways: The content of a ReadOnly TextBox can ...
Josh Brunton's user avatar
0 votes
1 answer
99 views

I have a datagrid populated from a viewmodel, I want to use Template selector based on the viewmodels property (basic template selector using a boolean field to decide which template is needed) public ...
Patrik Valyon's user avatar
0 votes
1 answer
81 views

I want to show View Model on my UI using treeview, but I could not find a way to go more than one node deep The view should show the Persons and their Adress and their Adress details using System....
Patrik Valyon's user avatar
0 votes
2 answers
173 views

Anyone know how to reduce or remove this padding on the content area of NavigationView (WinUI 3)?? I'd like to do this without using a Style. Is there a resource I can override? The reason I ask is ...
Maximus's user avatar
  • 1,317
0 votes
1 answer
129 views

I've recently started to use WinUI 3 and have an issue with changing the backcolor of a canvas. Coming from WPF, I was used that simply changing the Background property works. This however, results in ...
Seeloewen's user avatar
1 vote
1 answer
333 views

Let’s say I have a ListView, a DataTemplate for the items and two MenuFlyouts: <Page> <Page.Resources> <MenuFlyout x:Key="Menu1" /> <MenuFlyout x:Key=...
Karmeye's user avatar
  • 1,555