Questions tagged [windows-community-toolkit]

The UWP Community Toolkit is a collection of helper functions, custom controls, and app services. It simplifies developer tasks building [tag:uwp] apps for Windows 10.

The Windows Community Toolkit is a collection of helper functions, custom controls, and app services. It simplifies developer tasks building apps for Windows 10. The controls and app services in the toolkit are an addition to what's available in the current Windows 10 SDK (and will be marked deprecated if/when they're added to the official SDK).

The available toolkit NuGet packages are listed on the project's GitHub page. There's also a UWP Community Toolkit demo app in the Windows Store showing how to use the controls and services, including copy-paste code snippets.

356 questions
2
votes
1 answer

DropShadowPanel and border corner radius

I want to make drop shadow effect with border control. I am using UWP toolkit.
user3239349
  • 877
  • 1
  • 12
  • 33
2
votes
0 answers
2
votes
1 answer

UWP community fade animation not changing the opacity at all

await VolumeRing.Fade(value: 1f, duration: 20, delay: 0).StartAsync(); My problem is very simple. I am using UWP community toolkit to animate the fade animation of a xaml element but I've even checked with breakpoints; the above code does bring its…
2
votes
1 answer

Multiple Views With Blades

I am attempting to create an UWP application that will allow users to open new windows. I've based the creation of the new windows on Microsoft's Multiple Views Sample I'm experiencing an odd error when the new view contains a blade (from…
2
votes
1 answer

UWP Community Toolkit AdaptiveGridView control with one item only

I am making a media app with using UWP Community toolkit nuget package to use AdaptiveGridView Control, in order to show the video library contents. Problem: When the items are very few or for example I have only 1 item it expands over the whole…
Muhammad Touseef
  • 4,357
  • 4
  • 31
  • 75
2
votes
1 answer

UWP: Chaining Scrollviewers with ISupportIncrementalLoading

I'm trying to implement a Comments Section at the end of a page, which I want to load comments as you scroll down the page. Currently I have the ListView scrollviewer as the means of scrolling the content. However, this feels disjointed as there are…
William Bradley
  • 543
  • 5
  • 14
2
votes
1 answer

How to add a drop shadow around flyout

How to add a drop shadow around a flyout in UWP? I tried DropShadowPanel in UWP Community Toolkit to wrap the flyout, but it didn't show along with the flyout. How can I achieve it so that a drop shadow shows and disappears along with the flyout?…
Zenas Chen
  • 471
  • 4
  • 14
2
votes
0 answers

How can Microsoft Edge Browser run a downloaded exe file while beeing an UWP Application?

During development of an universal windows platform app we faced a lot of limitations in terms of isolation coming with the UWP platform e.g. the restriction of not being able to launch any exe file from within an UWP App. From what I can see,…
2
votes
2 answers

DropShadowPanel adapt to button template style

I'm using the UWP Toolkit's DropShadowPanel for apply a shadow effect on a Button control. Here the documentation : DropShadowPanel XAML Control The fact is i edited the button style's Template for Round borders but the DropShadowPanel doesn't…
ArthurCPPCLI
  • 1,072
  • 7
  • 18
1
vote
1 answer

MAUI Command on menubar will only navigate the first time to the page

I have an apps settings page in the menubar and I also have a button on the main page. If the settings menuitem is clicked first then it goes to the Settings command otherwise nothing happens. The button always goes to the Settings command. It…
Darryl Wagoner WA1GON
  • 967
  • 1
  • 10
  • 31
1
vote
0 answers

.NET 6 WinUI 3 Community Toolkit Datagrid Update Cell Value Programmatically

I have a Community Toolkit datagrid with a button. Clicking the button fires an event that calls a method that updates the Selected property bound to the button's Text. The bound item is a property of the SelectedAssignUsersGrid property bound to…
E. A. Bagby
  • 824
  • 9
  • 24
1
vote
1 answer

disable row selection in winui3 datagrid

I have been trying very hard to disable hover, mouse over and row selections on datagrid rows. I had used the following code for Wpf application in the past and it worked perfectly. However, I am in the middle of the process of migrating my code to…
1
vote
2 answers

How to customize WinUI 3.0 DataGrid Cell color?

I'm building a WinUI 3.0 Application and I need to change DataGrid cell's color depend on it's value, like this: But nothing worked so far... The Microsoft's document doesn't make it clear enough: [styling_formatting_options] Is there any way to do…
Weisin Wu
  • 11
  • 2
1
vote
1 answer

TreeViewItem template click/select/highlight issue

I am new to WinUI 3 and I am currently building a TreeView (CommunityToolkit) where I can drag/drop TreeViewItems on top of each other. The TreeViewItem that I have consist of 3 parts, a group name, a display name and children items. The drag/drop…
Mo Patel
  • 2,321
  • 4
  • 22
  • 37
1
vote
1 answer

Relay Command doesn't execute

I've decided to use the mvvm architecture in my project and tried converting my code to it. But it looks like I'm misunderstanding something, as the properties I'd like to set in an relay command are either not changed or the changing has no effect.…
Ayes
  • 15
  • 5