python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to know when the 'x' button in TextBox was clicked?
I need to know when the text in TextBox is cleared when clicking the 'x' button. There's no event for this in UWP or WinUI3.
Just the TextChanged event does not help.
JamesL
Votes: 0
Answers: 1
How to build a WinUI 3 app using .NET 6 in an AzureDevops pipeline? Getting: error NETSDK1095
I have a blank WinUI3 desktop app:
I would like to build this app in an AzureDevops build pipeline:
pool:
vmImage: 'windows-2022'
variables:
solution: '$(Build.SourcesDirectory)/apps/windows/Win...
Felix
Votes: 0
Answers: 1
How to get a PropertyChanged event for a child property in a ListView
I have a Master/Detail View for a User Management of my App. The Master should be representeb by a List View
<ListView ItemsSource="{x:Bind ViewModel.UsersView, Mode=OneWay}"
...
HolgerB
Votes: 0
Answers: 1
How to place expander chevron on the left?
By default the expander chevron is placed on the right:
<Expander
Header="This text is in the header"
Content="This is in the content"/>
How can I make the chevro...
Felix
Votes: 0
Answers: 1