Tag Info

Hot answers tagged

4

Was having the same issue with the FlipView and unable to get the BindableBase or the TwoWay option to work. Because the order of the list was not really a topic for me, I've created a method to reorder the ItemsSource, to start with the SelectedItem as being the first item in the Collection. In the underlying code, the result is the new ItemsSource for the ...


4

Between these two syntaxes, is there any reason to use one over the other or are they basically two ways to do the same thing? They effectively do the same thing. In both cases, the compiler generates a method for you anonymously, creates the delegate, and assigns it. The main advantage to the newer lambda syntax is that it is shorter. The Anonymous ...


4

the built in sample apps do a pretty good job of using visualstate, LayoutAwarePage to support the various resolutions and layouts. Ideally you wouldn't be doing anything to hardcode height or width, you'd be using the various layout systems to place things in relative positions and resize gracefully, instead of explicitly setting sizes and locations.


3

You can use a single button click event if you want. That's entirely appropriate. Note that if you're going to do that you probably shouldn't have a whole bunch of ifs to try to determine which button this is for. If you're going to share a handler it should mean that you don't need to do that. If a portion of the click handler is the same and a portion ...


2

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()); ...


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 ...


2

If you want to disable your entire app for portrait view, then you can do via app manifest file. For specific page, there is no built-in support for this, but you could detect the rotation and then apply a transform to rotate it back. Here's simple demo <Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}" ...


2

You can inspect our package of WinRT components. It contains date picker component as well as a lot of other UI components: radial and plain menus, color picker, rating controls and so on. And it's totally free btw ;).


2

I'm not aware of a hard limit outside of typical process limits, however two things to note: Your app if consuming a larger amount of resources, may be terminated and unloaded while it is suspended, so it's important to implement a proper resume strategy that doesn't take too much time, or your app will fail because of the wait time. Your app can run on a ...


2

Using HtmlAgilityPack HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument(); doc.LoadHtml(html); var props = doc.DocumentNode.Descendants("meta") .ToDictionary( m => m.Attributes["property"].Value, m => m.Attributes["content"].Value); Console.WriteLine(props["og:image"]);


2

Try settings these properties on the scroll viewer:- <ScrollViewer VerticalScrollBarVisibility="Visible" HorizontalScrollBarVisibility="Visible" ZoomMode="Disabled" Grid.Column="1" Grid.Row="2" HorizontalAlignment="Left" VerticalAlignment="Top" Width="600" Height="400"> <StackPanel Width="1200" Height="400" Orientation="Horizontal"> ...


2

Easy solution, stop using those crazy TextArrays. Let's pretend you really do have an array like you are showing. Why not make your life easier? Start with simplifying your data! string[][] _Data = new[] { new string[] { "A", "B", "C" }, new string[] { "1", "2", "3" } }; var _NewData = from d in _Data select new { ...


2

No, I doubt you tried a WrapPanel. There's not one in WinRT. Using VariableSizedWrapGrid you get a result something like this: Using a WrapGrid you get a result something like this: Presto! The trick? public sealed partial class MainPage : Page { public MainPage() { this.InitializeComponent(); } } public class MyViewModel { ...


2

In your ListView, you need to change the swipe gesture setting to the following to enable touch selection: IsSwipeEnabled="true" You should also consider changing the selection mode to single or multiple, to allow an item to be selected: SelectionMode="Single"


1

You can create such view of GridView by setting ItemsPanel to WrapPanel, you can get WrapPanel on Jerry Nixon's blog. Here's the code. XAML <GridView x:Name="gv"> <GridView.ItemsPanel> <ItemsPanelTemplate> <local:WrapPanel Orientation="Horizontal" /> </ItemsPanelTemplate> ...


1

Check Windows 8 GridView and Variable-Sized Items and Different Sized Tile Items in WinRT GridView and also check Variable Sized Grid Template Hope this help


1

The following works around the issue where the Surface RT does not consistently capture video frames: await mediaCapture.StopPreviewAsync(); await mediaCapture.StartPreviewAsync(); await mediaCapture.CapturePhotoToStorageFileAsync(imageProperties, file); It may take a little extra time to stop/start the preview before each frame. This was my first shot at ...


1

Why not use, DataGrid for WinRT - there are alot of datagrid's available for WinRT from Third Party something like Syncfusion Offers you can check here. http://darkcore.in/getting-started-in-syncfusions-datagrid-sfdatagrid-for-winrt/


1

Okay, so I tested: On a touch monitor (local machine) - worked fine On a touch monitor (simulator) - worked fine On a Surface RT (remote machine) - worked fine On a normal monitor (simulator) - worked fine Have you tried touching your ear while you do it? :) I don't think this is a universal problem, since I can't replicate it.


1

We might as well start with the Open XML SDK 2.0 for Microsoft Office by Microsoft. This is a nice SDK, but it is not compiled for Windows Store Apps. Don't try. Unfortunately the OpenXML SDK 2.0 and 2.5 rely on .Net Framework namespaces (e.g. System.Xaml) which are not available for Windows 8 Store apps. So at the moment there is no way to use the ...


1

To solve your problem, you need to stop using the CameraCaptureUI and start using the <CaptureElement/> in a UI you specifically design for your special scenario. I wrote this up in an article to help. Here. Best of luck!


1

Yeah, I think I know what you want. Let's say you have some XAML like this: <Grid Margin="50"> <Grid.ColumnDefinitions> <ColumnDefinition /> <ColumnDefinition /> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition /> <RowDefinition /> ...


1

Yep. Here's how! Task<ProcessorArchitecture> WhatProcessor() { var t = new TaskCompletionSource<ProcessorArchitecture>(); var w = new WebView(); w.AllowedScriptNotifyUris = WebView.AnyScriptNotifyUri; w.NavigateToString("<html />"); NotifyEventHandler h = null; h = (s, e) => { // ...


1

In lieu of a perfect match, I think the best is new window: I think it conveys what you are wanting to say here. It's U+E17C in Segoe UI Symbol. You can also find it in Common/StandardStyles.xaml as NewWindowAppBarButtonStyle


1

I like that you are using visual states. They make discreet animations like this easier in XAML. I think you will just need your own animations though. Should be pretty easy. Take the code below and drop it in any Windows 8 app page. Then open it in Blend so you can preview the visual states more easily. I think this is 90% of what you need. The rest is your ...


1

Here's the no-fail way to do it. I am not a fan of third party libraries to solve a little problem. No offense to the agility pack, by the way. It's super great and powerful. You never want to parse HTML on your own. But this is such a little edge case! Why screw with it? You can't be sure the HTML will parse, so you need something else. XML is tempting ...


1

To somewhat supplant the previous answer, I've found that simply invalidating the WriteableBitmap should do the trick. I would advocate trying that first before you rewrite the image, as that may have a more substantial impact on your application over just Invalidating it. This bug can also be reproduced by forcing your application to suspend and resume. It ...


1

That's the nature of the Popup unfortunately. You should make sure your Popup is a child of some Panel (e.g. a page's LayoutGrid Grid) and handle the SizeChanged event of its parent to update the Popup. If you are looking for a nicer solution I'd look into Callisto's Flyout control.


1

Get the language tag of the app's preferred language: Windows.Globalization.ApplicationLanguages.primaryLanguageOverride and use it with a DataTemplateSelector to choose the right ItemTemplate. Something like this: public class LanguageTemplateSelector : DataTemplateSelector { public DataTemplate ItemTemplate1 { get; set; } public DataTemplate ...


1

There are two possible different approaches. Approach 1: create a specific style The simplest solution is to set the colors directly in the Style to the desired hardcoded values like in the following code, this produces a black button: <Style x:Key="BackButtonStyleBlack" TargetType="Button"> <Setter Property="MinWidth" Value="0"/> ...



Only top voted, non community-wiki answers of a minimum length are eligible