Tag Info

New answers tagged

0

Thank you guys for all the answer here. But finally, I came up with this : this is my XAML code from the SearchResultPage.xaml : <GridView x:Name="gvResult"> <GridView.ItemsPanel> <ItemsPanelTemplate> <local:WrapPanel2 Orientation="Vertical"/> ...


0

I don't think your math is right. You can calculate angle between vectors using dot product and arcus cosinus, pseudo-code below: double vectorALength = sqrt(vectorA.x * vectorA.x + vectorA.y * vectorA.y); double vectorBLength = sqrt(vectorB.x * vectorB.x + vectorB.y * vectorB.y); double dotProduct = vectorA.x * vectorB.x + vectorA.y + vectorB.y double ...


0

According to this MSDN Blog Minimal app (ex. Hello World)- 50-70 MB Medium app (ex. Weather) - 80-100 MB Large app (ex. Photos) - 120-150 MB Hope this helps!


0

Since WPF triggers are not implemented in WinRT, you could define a DataTemplateSelector on your GridView. In this TemplateSelector, define two templates, one for "regular" entries, and one for "searched" entries. In the SelectTemplate method of your template selector, just test the property of your data object, to check if you must apply one template or ...


1

Use Item Template Selector. Define two properties SelectedTemplate and DropDownTemplate in Selector class. Check whether the container is wrapped in a ComboboxItem. If yes choose DropDownTemplate. If not choose SelectedTemplate. public class ComboBoxItemTemplateSelector : DataTemplateSelector { public DataTemplate SelectedTemplate { get; set; } ...


0

The way I would do this is to save the original StorageFile from the FileOpenPicker call. Perhaps you can create a member variable in the page for this. You can then just use the member variable (rather than the Img variable) to do the copy.


2

There might be other ways, and I am still less than green with XAML, but here is one way using Nate's pageAdornerControl method. Place the cursor on the Layout:PageAdornerControl in the XAML code area. Go to the properties window, which should show the type as PageAdornerControl. Scroll down to header From the dropdown list, select Go to Source You will ...


0

WinRT XAML Toolkit This has many builtin converters in the framework, including the BooleanToVisibilityConverter.


0

There's a bit of redundancy here: Option 1: Spare the CommandParameter: private Item _selectedItem; public Item SelectedItem { get { return _selectedItem; } set { _selectedItem = value; NotifyPropertyChanged("SelectedTrends"); } } private RelayCommand _selectedItemCommand; public RelayCommand SelectedItemCommand { get { ...


0

You should adopt the view model first approach. In other words, activate an instance of a view model, and Caliburn.Micro will do the view location and binding for you. It also looks like you want to just instantiate the view model once in the constructor for example, or OnInitialise: public MainViewModel() { this.ActivateItem(new NewsFeedViewModel()); ...


1

Currently I have intentionally not implemented any events in the charts. You can use a two-way data binding to react on changes. You can bind a property of your view model to the SelectedItem property of the chart and you get notified if the selection changes. See the sample in the documentation http://modernuicharts.codeplex.com/documentation#howto1 With ...


0

I have just created NuGet package of Modern Chart. Install it from there. Uninstall any previous library of modern chart. I am also giving you the demo of chart. First create new page and add this code. That's it! MainPage.xaml <Page ... ... ... xmlns:chart="using:De.TorstenMandelkow.MetroChart" --> ... ... ...> ...


0

Your control needs to have focus to handle KeyDown events. If you need to handle them globally - you could handle them on Window.Current.KeyDown instead of the control.


1

okies. Got other 2 events working as: SelectionChanged="RichEditBox_SelectionChanged" Holding="RichEditBox_Holding" Above events mentioned in the question might be a bug, not sure though.


1

it's known issue, it has been fixed in build 315. Take the latest build here: http://prerelease.componentone.com/


3

Okay, so the basic requirements for using a Grouped GridView are: (Note: all class names are arbitrary) A ViewModel (You're using Mvvm, right?) A Group object which holds the elements of each group. An Item object which the Group will contain a collection of A View with which to display the items which includes a GridView and a CollectionViewSource ...


4

You need to raise a PropertyChanged event for the property that is backed by oCol. You have changed the collection and the framework is still databinding to the old collection.


0

Nevermind, I figured it out, just call this function in the LoadState: private async void DelayedAppBarHide() { await Task.Delay(1000); this.TopAppBar.IsOpen = true; await Task.Delay(3000); this.TopAppBar.IsOpen = false; }


1

Player framework is one of good framework for media playback. Then also if you want to create your own player interface then do it like given below. You can use Opacity property for transparency. <Grid Width="339" Height="278"> <Grid.RowDefinitions> <RowDefinition /> <RowDefinition Height=".5*"/> ...


1

Well, you can't directly bind properties of two controls on different pages since they aren't displayed at the same time. You'll need to store your state elsewhere and retrieve the values from there. Basically you'll need to store your application state somewhere, either inside the App class or singleton/static properties. Alternativelly you could persist ...


0

Perhaps if you derived your WrapPanel from OrientedVirtualizingPanel it would work, but I wouldn't bet on it being possible. You could create your own list control with custom virtualization implementation, but that seems to be even harder. Maybe give up on your custom panel and just use a WrapGrid or group your results in a virtualizing panel e.g. have ...


2

There's no method on WebView allowing you to perform a POST request. You could do it by invoking a JavaScript function inside WebView, though. First you need to construct a web page containg the form you require and a JavaScript function submitting it: var html = @"<html> <head> <script type=""text/javascript""> ...


2

To change the binding of your TextBox from Content1 to Content2, first give the TextBox a name, and then in the code-behind you can do this: myTextBox.SetBinding(TextBox.TextProperty, new Binding("Content2")); To access Content1 in the code, you can do this: string content = ((ContentList)this.DataContext).Content1;


1

You change the Binding to Content2 by writing Content2 in the XAML file. You cannot do this dynamically. Well, that's not quite right. It's possible to use the Binding class to establish a new binding in code. But you shouldn't do that in this case because it defeats declarative programming in XAML. Content1 may be accessed like this: ...


0

If you just want the screen coordinates on item click... You can register a click handler on the image and then use senderimg.transform tovisual(null) this gives you a generaltransforn from which youcan get the current point coordinates.


0

You can use httpclient to call the rest servicrs exposed by sharepoint and consume the data. If you want to use csom you need to call csom functions from another dll and inclide the dll in your project. You cannot include csom libraries directly in store app. Csom: client side object model


0

You can try and change the items panel of the combobox from carouselpanel to stackpanel in the style. That way the virtualization problem and combobox opening on both sides problems might be solved. (cant check it myself right now)


1

To your ListView, add: ScrollViewer.VerticalScrollBarVisibility="Disabled" ScrollViewer.VerticalScrollMode="Disabled" If that is not enough (this sometimes does not work with MouseWheel events, in that the events still tend to be caught in the ListView and also tends to happen if the list inside of the ScrollViewer is particularly large, I've found), then ...


3

There are Throttle and DistinctUntilChanged methods. System.Reactive.Linq.Observable.FromEventPattern<Windows.ApplicationModel.Search.SearchPaneSuggestionsRequestedEventArgs> (Windows.ApplicationModel.Search.SearchPane.GetForCurrentView(), "SuggestionsRequested") .Throttle(TimeSpan.FromMilliseconds(500), ...


0

You always talk about binding - but you don't actually bind the textbox.textproperty to your property (you set it). If you wanna use binding, create a dependency property and bind the text-property of the textbox this way: <TextBox x:Name="MyTextBox" **Text="{Binding TextBoxText, Mode=TwoWay}"** /> Don't forget to set the usercontrols DataContext ...


0

First, you need a better understanding of what UI technology you are working with. .NET has many UI frameworks: Winforms WPF Silverlight ASP.NET webforms ASP.NET MVC Windows Phone, Windows Store apps. Most of these UI frameworks have RadioButton controls. They are different classes, and have different properties and behaviors. Postback is part of the ...


0

This isn't easy. But it's all wrapped in this single method for you to use. I hope it helps. ANyway, here's the code to create a Bitmap based on a given color & size: private async System.Threading.Tasks.Task<Windows.Storage.StorageFile> CreateThumb(Windows.UI.Color color, Windows.Foundation.Size size) { // create colored bitmap var ...


1

Try; making the event handler public & non-static, make sure nobody is eating up the events. what about this: chk[i].AddHandler(PointerPressedEvent, new PointerEventHandler(SomeButton_PointerPressed), true);


3

There is only one implementation of a property in a user control that supports binding in the consuming page. That is a dependency property. The implementation is simple enough, but you must also include the changed event to interact directly with the UI, since a dependency property is a static property on a control. Like this: public string TextBoxText { ...


0

i am not sure what kind of gridview are you using, but if you are experiencing this only when the rows count is big and not when its a small number you should consider not using .net gridveiws due to their slow performace , A quick google search would give you an amount of grids for each technology you need. If you are Using the .net "datagridview" try ...


0

Yes, they are the same. The XAML team made a design decision to implement a generic OnActivated override as well as strongly typed overrides for the most common types of app activation. It is a best practice that, if there is a specific override, you use the specific override (like OnSearchActivated). But some advanced scenarios, like file or protocol ...


0

Since you aren't providing any more information, there are few things to work through "generally" that might help. Again, I am shooting from the hip with common problems... The first is that your storyboard is inaccurate. If you created your transitions in Blend, then this is not likely. But if you coded them by hand, then the targets may not be what you ...


2

When you add PDF document in project, you have to change it's build action. Right click on PDF document. Click on properties. Change Build Action from None to Content


2

AutoPostBack is not in a namespace, it's a property of CheckBox because a RadioButton inherits from CheckBox. You also have to ensure that dynamic controls are recreated on every postback with the same ID as before and in Page_Load at the latest. How to: Add Controls to an ASP.NET Web Page Programmatically. Register the CheckedChanged event ...


2

Your code has mistake. Remove "\\" from this line StorageFile storageFile = await folder.GetFileAsync("Circulo 2_Atomo.png")


1

I'd avoid using buttons in GridViewItems since they have conflicting input handling. Simply put your content there instead of in the button. The way I'd use it would be to handle ItemClick events, get the DataContext from the event sender (probably GridViewItem) to get the item view model and invoke the command from the event handler. If you really dislike ...


0

HLS (m3u8) isn't supported by the platform. But you have these options: create your own media source provider 3ivx, a library that supports both Windows store apps, and windows phone 8, but they are really expensive (for me the offer was 7500 Australian dollars per app) Apptelic HLS‏, a commerical library for Windows 8 and windows Phone


3

do you want to launch it? this will do it for you (should) private async void launch() { string launchMaps = "explore-maps://v1.0/?latlon=56.615495,12.1865081&zoom=5"; await Windows.System.Launcher.LaunchUriAsync(new Uri(launchMaps)); }


0

To size the ComboBox's faceplate to the largest item, set an explicit value for ComboBox.Width (or ComboBox.MinWidth to set a minimum but allow it to grow for larger items). This works if you know the length of the longest item ahead of time. ComboBox's CarouselPanel inherits from VirtualizingPanel, so since the items can be virtualized it's difficult to ...


2

You need to override OnApplyTemplate method and call GetTemplatePart for each template part control and store these in private fields. Then add dependency properties for each of the RGBA channels and maybe use TemplateBinding to bind slider values to the properties. Finally in the callbacks of your dependency properties set the Color property value.


1

I believe that CollecitonViewSource in WinRT does not have SortDescription. You may have to order the Items instead. This link might help as well. A WinRT CollectionView class with Filtering and Sorting


1

How do you (re)populate the gridview? Are you setting it to empty before repopulating? That might help. e.g. try adding this before you set the source for the gridview after the user selects the combobox item: GridGames.ItemsSource = Nothing


0

Since you bind the Slider's value directly without a value converter, I suspect that the binding is broken when the text is not a number or out of range. You can prevent that by creating a value converter that will prevent bad value to be bound, so the binding will always work. Here is some example: public class TextToSliderValueConverter : ...


0

You should be able to achieve this scenario using an ElementName Binding: <GridView Height="600" x:Name="gv" /> <Button Command="{StaticResource MyCommand}" CommandParameter="{Binding ElementName=gv, Path=SelectedValue}" Content="Click me please, I like it" /> Full example code: ...


1

As wojtek suggests, you can use IsEnabled="False" to disable input from affecting the Slider. You get this: Now, you have the additional requirement of needing to change the fill color of the Slider. Here you have two options: Retemplate the Slider and change the "Disabled" visual state to look how you want it. In Blend, right-click the Slider and ...



Top 50 recent answers are included