Questions tagged [mytoolkit]

MyToolkit is a set of .NET libraries containing lots of useful classes for various .NET platforms like WinRT (Universal apps), Windows Phone and WPF. The goal is to provide missing or replace existing classes to support the development of high-quality Windows and Windows Phone applications.

Check out http://mytoolkit.codeplex.com for more information.

20 questions
7
votes
1 answer

Why does my AppBar appear as ClosedDisplayMode.Compact on Page load regardless of actual setting?

I'm porting a Win8.1 app to UWP for Win10 and experiencing a strange issue with the AppBar. We've tried using CommandBar instead of AppBar, but the issue still occurs for us. We're on the latest version of MyToolkit (2.5.16 as of this writing). Our…
Daniel A. Thompson
  • 1,904
  • 1
  • 17
  • 26
2
votes
2 answers

The SystemMediaTransportControls were initialized in a different mode error in mytoolkit

When i run mytoolkit after background audio player start is return "The SystemMediaTransportControls were initialized in a different mode. Please use the API associated with that mode to complete this operation" Exception. var url = await…
2
votes
0 answers

MyToolkit reduce memory usage

I'm developing a Windows Phone 8.1 app and I'm using MyToolkit.Controls.HtmlView to display html content. Here is my code: On hvHtml_Loaded…
OviniX
  • 21
  • 2
1
vote
1 answer

Set scroll viewer to automatically scroll to the bottom

I Used mytoolkit.extended controls for datagrid, there is datagrid and inside it there is MtListbox. I have set vertical scroll bar to auto, it is working fine but i need an option that whenever scroll bar appears it should go down and show the last…
1
vote
3 answers

How To Modify Grid Column Width Using Visual State in UWP?

For showing results, I am using Data Grid of MyToolKit Package by following below mentioned example: https://github.com/MyToolkit/MyToolkit/wiki/DataGrid Using this Grid I am able to show the results. In Order to make grid Responsive I want to set…
Sagar
  • 371
  • 9
  • 26
1
vote
0 answers

C# WPF MediaElement MyToolKit Youtube

I would like to run youtube videos in a media element. This morning, everything worked well but now I have an error saying that an object is null. I've tried to find the object but there is not. An other group has the same case as mine. I didn't…
Max
  • 316
  • 2
  • 15
1
vote
1 answer

WinRT FlipView.SelectedIndex binding not responding to changes in ViewModel

I would like to programmatically change the SelectedIndex of a FlipView. My ViewModel looks like this: public class MyViewModel : ViewModelBase { private int _flipViewIndex; public int FlipViewIndex { get { return _flipViewIndex; } …
Daniel A. Thompson
  • 1,904
  • 1
  • 17
  • 26
1
vote
2 answers

Getting an Exception "System.ArgumentException was unhandled by user code" while converting ObservableCollectionView into AsQueryable ()

I used ObservableCollection type of object . I tried Filter by the following code public ObservableCollectionView SampleEntries { get; set; } private void ApplyFilter(int age) { SampleEntries.Filter = (entry => entry.Age > age…
User
  • 47
  • 6
1
vote
1 answer

mytoolkit:FixedHtmlBlock changing styles, xaml

So I'm developing a Windows Phone 8 app, and I'm using mytoolkit:FixedHtmlBlock to display html content. My code is below I…
Royden Rego
  • 132
  • 3
  • 13
1
vote
1 answer

MyToolkit You Tube API. Video Player Crash in windows phone 7

I'm trying to create and app with inbuilt capability to watch You tube videos. The plugin that I am using to implement this feature is "MyToolKit"(http://mytoolkit.codeplex.com/). The whole thing works fine. When the request query is sent to the…
Dehan
  • 4,818
  • 1
  • 27
  • 38
0
votes
2 answers

Using mytoolkit datagrid with multi-select checkboxes in uwp

I want to display a data grid with check boxes. In my code its add the check box to the header so how to bind the check box for all rows and after click on select all check box all check box should be selected. i want to display output same as…
ketan patil
  • 65
  • 15
0
votes
0 answers

Change the value MTframe.CanGoForward of the MyToolkit

I am using MyToolkit MtFrame class for paging in my UWP app. I need to change the value CanGoForward but is an only-read value.
0
votes
0 answers

Tab Issue with My Tool Kit Data Grid

For showing data in a table format in UWP I have used MyTool Kit DataGrid in my application. It's working fine,but facing some Issues with TabStop. In the grid some of my columns are editable and some of the columns are non editable. I want to…
Sagar
  • 371
  • 9
  • 26
0
votes
1 answer

how to integrate keyboard actions with mytoolkit datagrid in uwp

I am working on a uwp app. In that I am using a data grid from https://github.com/MyToolkit/MyToolkit/wiki/DataGrid here. Now in this I have to use keyboard actions using up and down arrows. I have used KeyDown event and selection_changed event for…
Archana
  • 105
  • 1
  • 10
0
votes
1 answer

Unable to handle MyToolKit.Extended DataGrid in UWP

I am developing a UWP application. Here I want to show data in a table formate like below, Here my purpose is I will search items and add those to this grid. with out data in grid If I click on Rounded button(Red Color it's a datagrid Header…
Sagar
  • 371
  • 9
  • 26
1
2