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
1 answer

UWP Toolkit Hamburger menu navigation does not seem to work

I am following the sample and document from https://developer.microsoft.com/en-us/windows/uwp-community-toolkit/controls/hamburgermenu to plan with the control. I copied the code from the bottom of the page to try out the navigation feature. And the…
hardywang
  • 4,864
  • 11
  • 65
  • 101
0
votes
2 answers

Master-Details view in UWP Community Toolkit

I tried to implement Master-Details view from UWP Community Toolkit 2.0. I copied the example code from the uwp community toolkit sample app. But It seems the data is not binding properly. Now the Master details View is empty. Can anyone help me…
Ajai
  • 1,049
  • 1
  • 11
  • 23
0
votes
1 answer

No ToastNotification on Windows 10 IoT (RPI2)

How to get the ToastNotification working on Windows 10 IoT? (Raspberry Pi 2). ToastBindingGeneric binding = new ToastBindingGeneric(); binding.Children.Add(new AdaptiveText() { Text = "Foo" }); binding.Children.Add(new AdaptiveText() { Text…
juFo
  • 17,849
  • 10
  • 105
  • 142
0
votes
0 answers

UWP Community Toolkit not building in Release mode?

I am using UWP Community Toolkit with Template 10 in my UWP application. Whenever i am trying to build my app in Release mode it is not building.But in Debug mode everything seems fine. As per my research i found that UWP Community toolkit supports…
tushargoyal1309
  • 175
  • 1
  • 14
0
votes
1 answer

UWP community toolkit RoundImageEx image not showing

I have the following DataTemplate for my GridView
0
votes
1 answer

How to serialize a List(of Object) in VB.NET?

I have a class Player that I use to create a List(Of Player). I need to save it when the application closes. In Windows Forms, I would just serialize, but that's no longer possible in UWP, so I had to Google for a few dozen of hours and I finally…
Nato Boram
  • 4,083
  • 6
  • 28
  • 58
0
votes
0 answers

How to use UWPCommunityToolkit BladeView in a web app?

Newbie to web dev and windows stack. I'm keen to use UWPCommunityToolkit's BladeView but for a web application and not for a windows app. How can I leverage the BladeView source and import such a UI framework inside a web app?
dmkathayat
  • 393
  • 1
  • 4
  • 11
0
votes
1 answer

uwp GridView selectedItem Popup

I am using AdaptiveGridView by UWP Community toolkit. I want the selected Item of the gridview to popup on the Z-axis, meaning the selected Item must scale up to a specific size, but it should not disturb the size of other gridview items, rather it…
Muhammad Touseef
  • 4,357
  • 4
  • 31
  • 75
0
votes
1 answer

uwp random sized thumbnails make look adaptiveGridView ugly

In my app I am retrieving thumbnails of only the video files. and I am using AdaptiveGridview of uwp community toolkit with some other file properties to show on the UI. Problem: Some files return null thumbnail so I have to fill their BitmapImage…
Muhammad Touseef
  • 4,357
  • 4
  • 31
  • 75
0
votes
1 answer

uwp adaptiveGridView throws exception on OneRowMode

I am having following exception on my adaptivegridview of uwp community toolkit "System.ArgumentException: Value does not fall within the expected range. \r\n at Windows.UI.Xaml.FrameworkElement.SetBinding(DependencyProperty dp, BindingBase…
Muhammad Touseef
  • 4,357
  • 4
  • 31
  • 75
0
votes
1 answer

Moving a XAML Element from One Postion to another

I took the following tutorial as a good start point to animation and also explored the toolkit Offset option but found it somehow complex to accomplish what I want, unless proven otherwise. Goal: Upon clicking a matrix button, move the object from…
usefulBee
  • 9,250
  • 10
  • 51
  • 89
0
votes
1 answer

UWP Parallax with offset

I develop UWP application with listview of images with translucated items background like on Windows Phone Start screen (e.g. …
Ivan
  • 138
  • 6
0
votes
0 answers

UWPCommunityToolkit's PrintHelper produce blank output

I have my code below, basically to print out an image. private async void imageControl_PrintButtonClick(object sender, RoutedEventArgs e) { var createBitmapTask = Task.Run(async () => { var stream = await…
0
votes
1 answer

How to implement Incremental loading in MasterDetailsView?

I want to implement Incremental loading in MasterDetailsView. I know we can implement Incremental loading with ISupportIncremental​Loading. But one problem I don't have all the items in the ObservableCollection at once. The items in…
Vijay Nirmal
  • 5,239
  • 4
  • 26
  • 59
0
votes
1 answer

UWP Get Outlook local contacts

After hours of research I achieved to get the contacts from Outlook using interop office library, using this code var outlookApplication = new Application(); NameSpace mapiNamespace = outlookApplication.GetNamespace("MAPI"); …
Razvan Ghena
  • 169
  • 1
  • 3
  • 12