Questions tagged [winrt-xaml-toolkit]

WinRT XAML Toolkit is an open source library with controls, extensions and helper classes for Windows Store applications utilizing Windows Runtime XAML.

WinRT XAML Toolkit is an open source library with controls, extensions and helper classes for Windows Store applications utilizing Windows Runtime XAML.

Features

  • attached behaviors
  • Controls
  • Converters
  • Extension methods
  • Imaging helpers
  • IO helpers
  • visual tree helpers
  • AwaitableUI

See also

120 questions
1
vote
1 answer

Intermittent ArgumentOutOfRangeException when using AlternativeFrame

I'm using WinRTXamlToolkit's AlternativeFrame in a Xamrin/MVVMCross Windows 8.1 application to support animations while doing page navigations. The animations run fine for the first couple of transitions, but I will intermittently get an…
foson
  • 10,037
  • 2
  • 35
  • 53
1
vote
1 answer

winRT XAML Toolkit Data Visualization Windows Phone 8.1

I try to implement WinRT XAML Toolkit Data Visualization I have a Grouped List of Data ObservableCollection items = await App.DataModel.GetNotes(); var groupedData = (from data in items group data by…
Ganesh Cauda
  • 969
  • 6
  • 21
1
vote
0 answers

How to save chart generated in WinRT (Windows Store)

I generated a chart using WinRT Toolkit. I want to save this chart to png file or other image file. I have using a WriteableBitmapSaveExtensions but it works like my current code: MemoryStream ms = await…
1
vote
1 answer

How to refresh a WinRTXamlToolkit Chart to display changed data

I'm doing currently some first Windows Phone 8 / XAML experiments and use the WinRTXamlToolkit chart control. While I managed to get my data drawn, I have problems to redraw the control to display changed data. …
Florian Storck
  • 509
  • 8
  • 22
1
vote
1 answer

Can't save PdfPage as a BitmapImage to disk

I'm trying to save the pages of a PdfDocument into the disk as a set of BitmapImage's, for which I'm using the extensions provided by WinRTXamlToolkit. PdfPage page = pdfd.GetPage(0); // pdfd is a loaded PdfDocument InMemoryRandomAccessStream…
1
vote
1 answer

WinRTXamlCalendar : how to change width?

I'm working on a Windows 8 app (Windows Store App) and i need to integrate a customisable calendar control. I need to use free libraries so i'm pretty limited by that. I digged around the Calendar control of the WinRTXamlToolkit but I couldn't find…
dotixx
  • 1,490
  • 12
  • 23
1
vote
1 answer

WP 8.1 Searching for calendar control

I'm developing an app for windows phone 8.1, and now I need a calendar control like the calendar app of the phone. I've tried winrttoolkit for windows phone, but in that calendar I cannot write on the cells of the days. I want to write something…
1
vote
1 answer

How to bind IsSelected Property of ListBoxItem with Mode Two way using WinRT Xaml Toolkit in Windows 8.1

I have a Windows 8.1 Application I am using WinRT Xaml Toolkit to bind my IsSelected Property to my ViewModel as the Binding is supported out of the box. I have included the following…
HelpMatters
  • 1,299
  • 1
  • 13
  • 32
1
vote
1 answer

How to bind my ObservableCollection two way to a ListView Extension WinRT Xaml Toolkit

I have a Windows 8.1 application with a ListView and I am using ListViewExtensions from WinRt Xaml Toolkit(Obtained latest from Nuget) to bind BindableSelection Here is my XAML
HelpMatters
  • 1,299
  • 1
  • 13
  • 32
1
vote
2 answers

WinRT XAML Toolkit: can we use it in windows phone 8.1 and windows 8.1 universal app

I am developing a charting app and want to use WinRT XAML Toolkit data visualization in both (Windows Phone 8.1 and Windows 8.1) of the projects in my universal app. How can I do this?
SUNIL JOSHI
  • 192
  • 1
  • 12
1
vote
1 answer

How to convert WritableBitmap to Base64 string

In my application I am using WriteableBitmapRenderExtensions.Render() method present in WinRT XAML toolkit for rendering xaml element. After rendering the xaml control I need to send this to server in the form of Base64 string. How I can convert…
1
vote
1 answer

UnhandledException while using chart from winrt xaml toolkit

I am using charts of winrt xaml toolkit in my app. In certain screens chart works fine but in certain screens it now throws UnhandledException (earlier it was working fine. I didn't update ANYHTING). I am not getting much exception details. What's…
Farhan Ghumra
  • 15,180
  • 6
  • 50
  • 115
1
vote
1 answer

How to set and get line series color from WinRT XAML Toolkit chart

ANSWER Thanks Filip, finally I found way to set the color. I just need to add Background property in DataPointStyle. I am posting my answer here. Also found a way how to modify the default tooltip. Showing lines with different colors on a…
Farhan Ghumra
  • 15,180
  • 6
  • 50
  • 115
1
vote
1 answer

Using ListBoxItemExtensions.IsSelected from WinRt Xaml Toolkit doesn't work TwoWay Binding

In Windows RT App (c#) with WinRt Xaml Toolkit i use this:
jimpanzer
  • 3,470
  • 4
  • 44
  • 84
1
vote
2 answers

How to change DependentRangeAxis in Areachart

I'm using WinRT-toolkit AreaChart, I need to change DependentRangeAxis directly in XAML code, I want to set a fixed range from 1 to 5.