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
0
votes
0 answers

uwp gridviewitem scale animation partially overlaps other items

Ok so I am trying to create a popup effect in the gridviewitems when they get focused. following is the code to do so. private async void Container_GotFocus(object sender, RoutedEventArgs e) { var panel = (sender as…
Muhammad Touseef
  • 4,357
  • 4
  • 31
  • 75
0
votes
1 answer

print master/detail's detail page using Uwp Community Toolkit

I use the Master/Details view from the UWP Community Toolkit and I am wrapping it in my "custom master/details view". This custom view should be able to print the current Detail, so the DetailsTemplate property on MasterDetailsView. The problem is…
BenjaVR
  • 530
  • 5
  • 15
0
votes
1 answer

Composition API Implicit Show & Hide Animations From Code

I'm trying to create implicit show and hide animations for UIElements in code that can be dynamically added and removed from the visual tree. I've tried the following: private void testButton_Tapped(object sender, TappedRoutedEventArgs e) { var…
Sean O'Neil
  • 1,222
  • 12
  • 22
0
votes
1 answer

How To Trigger Implicit Composition Animations

Following the only documentation I could find, I tried the following XAML:
Sean O'Neil
  • 1,222
  • 12
  • 22
0
votes
1 answer

uwp rotation animation in a loop with RotationAnimation class freezing UserInterface

I am trying to get a shaking (or jiggle effect) on a UI element in my uwp app by using animations from UWP Community toolkit. If I put a single rotation animation on it, it works perfect like expected. But I am actually trying to chain them up and…
Muhammad Touseef
  • 4,357
  • 4
  • 31
  • 75
0
votes
1 answer

Flipview UI freeze while fast swiping

I am developing an UWP Application which shows Images and Videos in a FlipView control. The Flipview control is put aside an AdaptiveGridView from the UWP Community Toolkit which shows all available Images/Videos for the FlipView. The FlipView and…
David198
  • 25
  • 7
0
votes
1 answer

How to retrieve username, email and image with OneDrive/Graph APIs?

I'm working on a UWP app and I was thinking about moving from the old LiveSDK (which is discontinued and was last updated around 2015) to the new OneDriveSDK (the Graph APIs), specifically using the UWP Community Toolkit Services package and its…
Sergio0694
  • 4,447
  • 3
  • 31
  • 58
0
votes
1 answer

Is there a way to get the index of a item in the UWP toolkits PullToRefreshList?

Im trying to take the Id from a button that I binded to the button tag but when I try I get it in a method a null value error is thrown even though I can set the context and text and the Id will appear on screen fine. So now im trying to mark the…
UWP122
  • 39
  • 7
0
votes
2 answers

How do you animate a "slide in" using the UWP Community Toolkit?

According to the Offset animation documentation: https://learn.microsoft.com/en-us/windows/uwpcommunitytoolkit/animations/offset You simply set an Offset value to your element and it will slide to the target…
Maximus
  • 1,441
  • 14
  • 38
0
votes
2 answers

Customize expander - UWP App

I have an UWP app (published in Windows/Microsoft Store), and I want add an Expander, based on the UWP Community Toolkit Sample App, but wanted to customize it. I have this code:
Fernando Sousa
  • 255
  • 2
  • 8
0
votes
1 answer

UWPToolkit AdaptiveGridView unresponsive when clicked

Im trying to use the AdaptiveGridView as a main menu to navigate to other pages so I thought I'd test a click event on it, from my understanding of the sample repo that can be found below you can use a clicked event when click is enabled to do…
UWP122
  • 39
  • 7
0
votes
1 answer

UWP Images from my DataTemplate wont bind to my AdaptiveGirdView

I've being trying different ways to implement the Adaptive grid and filling it with my own images but no matter what I just get a blank screen. I've tried the following, I get no errors but nothing shows up when I run it locally except the command…
UWP122
  • 39
  • 7
0
votes
1 answer

UWPToolkit - What is a ItemTemplate and how do I make one for my AdaptiveGrid?

Im currently trying to use the AdaptiveGrid in the toolkit to display Some images that then can be clicked on to lead to pages, I think this ItemTemplate is what provides the images in the example. Is this the same as any DataTemplate? I cant find…
UWP122
  • 39
  • 7
0
votes
0 answers

UWP How to allow a user to swipe through a rotator tile?

Im fairly new to UWP an have the following code below I got off the UWP toolkit samples Github.