Windows Store apps (formerly Metro-style applications) are built on the Windows Runtime (WinRT) and are available on the Windows Store. They target Windows 8 and Windows RT using .NET for Windows Store Apps and are immersive full-screen applications.
0
votes
1answer
35 views
Increment string value in List
This is not much complicated. But I am wondering how to make it possible.
XmlAttribute ids3 = item.GetAttributeNode("href");
string hrefname = ids3.Value;
value1.Add(hrefname); ...
0
votes
0answers
22 views
Need to disable Ui when popup is open
In my Windows Store app (c#) i have Popup:
<Popup x:Name="LoginPopup" HorizontalAlignment="Center" VerticalAlignment="Center" Width="400" Height="300" IsOpen="{Binding Path=LoginPopupIsOpen}">
...
0
votes
1answer
10 views
How to get Listview ItemClick Vallue in Relay Command
Hi i'm working in windows store app with MVVM pattern and i have some problem in catch the listview itemclick value in relay command. Now i got the selected item value.But don't know how to get ...
0
votes
1answer
7 views
Add image for Slider thumb in xaml
I would like to add image for thumb of xaml slider control in windows store app,
How to add,is it possible in windows store app?
0
votes
2answers
16 views
Styling Inner Elements in XAML Style
i have this code
<HyperlinkButton Style="{StaticResource HyperLink-Navi-Container}">
<HyperlinkButton.Content>
<TextBlock Text="Sample Text"></TextBlock>
...
0
votes
1answer
14 views
Smooth polyline when draw windows store apps
I am drawing canvas by using polyline. Add point polyline when i move pointer and draw canvas. I want polyline smooth, can you help me algorithm.
1
vote
3answers
45 views
How do i convert a JSON string to a native C# array?
I am trying to make a windows 8 Store app that gets results from a MySQL database from a PHP page as a REST service.
I'm looking for the PHP to return a JSON representation of an array of strings and ...
0
votes
0answers
9 views
Deactivate Telerik's diagram animations when the page is shown
Per default, Windows Store apps show a little animation when a new page is shown: The page moves a little to the left. (What's this kind of animation called?)
Telerik diagrams for Windows 8 do ...
0
votes
4answers
55 views
Ref in async Task
How I can to pass a reference as a parameter to Async method in Windows Store App ? I'm looking for something like this:
var a = DoThis(ref obj.value);
public async Task DoThis(ref int value)
{
...
2
votes
1answer
22 views
Show view from non-view/viewmodel in mvvmcross
What is the correct way to open a View in mvvmcross from a non-view? From within a viewmodel we would use ShowViewModel<>(..).
Specifically we are responding to a push notification opening the app ...
0
votes
0answers
20 views
Appending child node to IXMLNode
I am trying to add nodes to the original xml tile to make queue tilexml is the original tile and tiledata is xmldocument to get another template xml and change it and then put it to the original tile.
...
0
votes
0answers
21 views
WIndows App Store Semantic Zoom Issue
I have implemented a semantic zoom in my metro W8 app and it works fine except that in the ZoomedIn view I only get a max of 27 items in each group. The first group correctly has 27 items in the ...
0
votes
1answer
14 views
Add attributes to IXmlNode
In windows app store they changed the XmlNode to IXmlNode !!! , I tried to add attribute to the node by the normal way but I failed they removed Attributes.Append(---).
Is there any solution to ...
1
vote
0answers
17 views
PreviewKeyDown for Windows Store App ListBox
Is there an equivalent to the PreviewKeyDown for a Windows Store App? It isn't available.
I have exactly the same problem as described here:
I have a ListBox with a TextBox above it. I would like ...
0
votes
2answers
34 views
How to get the Domain of Current User programmatically in Store Apps
We developed an store app it works fine when we deployed in domain2 it not working.As it throwing an error we fixed that error in the domain2 and installed in the domain1 it doesn't work but it ...
-1
votes
3answers
55 views
Get element values from XML in C#
This is my XML data from file
<item id="ncx" href="toc.ncx" media-type="application/x-dtbncx+xml" />
<item id="W000Title" href="000Title.html" media-type="application/xhtml+xml" />
...
-3
votes
0answers
12 views
Samsung Tablet for Windows 8 Development [closed]
I am new in Windows Store Application development, I want to buy a device to test my app. can anyone tell that which is the best Samsung Windows 8 surface device for development?
1
vote
2answers
25 views
The best way load files from Isolated Storage
In my Windows Store App I save/use files (almost images) in Isolated Storage. When I need to present image i use following:
var file = await folder.GetFileAsync(fileName);
using (var stream = await ...
0
votes
1answer
25 views
How to catch exceptions which occur inside asynchronous methods? (Windows Store app, PPL)
I am trying to catch exception from OnlineIdAuthenticator::AuthenticateUserAsync method, which occurs when there is no internet connection for example.
I've found some info about this topic, but it ...
0
votes
0answers
29 views
Sending a string from Windows store app to a WCF
I have got a Windows Store App, and within this Store app I have a textbox wich the user types in information wich then gets sent to my WCF service.
Now here is the problem. When the user types in ...
0
votes
0answers
39 views
XML parsing in windows 8
My XMl data look like this, I am getting this from my local folder
<First>
<item id="ncx" href="toc.ncx" media-type="application/x-dtbncx+xml" />
<item id="xxxx" ...
0
votes
1answer
16 views
Accessing a WCF service in a Windows Store App hangs
I've started work on a Windows 8 store app that needs to communicate with a WCF service running as a Windows Service on a Windows 7 server. The binding is net.tcp, with no security (yet). I've also ...
1
vote
1answer
16 views
Set TabIndex to TextBlock
I'm developing Windows Store application, using C# + XAML.
I have a textblock, used as activation button for HeaderMenu with a chevron character inside it and Tap event binded. How can I activate it ...
0
votes
1answer
27 views
HTML parsing with HtmlAgilityPack in Windows Store App
i'm parsing HTML code to get Image Link in a "Windows Store Application"
i'm Using Html Agility Pack !
Here The Code :
async void LoidContent()
{
foreach (var feedItem in ...
0
votes
1answer
31 views
Simpler possibility for groupedview
I have a problem. I want to write an Windows 8 application and think that a Grouped GridView, like in the Sample Grouped Items App Template contained in Visual Studio, would be a good choice for data ...
1
vote
0answers
27 views
Replace element in GridView on element's event
I'm using a highly dynamic GridView inside my Windows Store App. Element's inside the GridView can have different template and size, depending on what I'm inserting inside DataSource. For instance:
...
0
votes
1answer
28 views
Modeless dialog box in App store
In C#, how can I show modeless dialog box for a App store application?
My app has multiple views and a long time task. I would like to show the task progress in a modeless box at the top-right ...
1
vote
1answer
36 views
MvvmCross: Application wide view model?
I am loving MvvmCross so far, but I am new to the MVVM technique. MVVM seems to center around the View and ViewModel and navigating between them. However, what about application-wide model items? ...
1
vote
0answers
37 views
Get Type from Fully qualified name only in Windows Store App
I have a string containing a full qualified name like MyNamespace.MyType which I know is in a loaded assembly.
I need to get the Type instance of this, in a windows store app.
The issue I'm having ...
0
votes
0answers
11 views
Trigger Gridview to relayout the items
I have
<GroupStyle.Panel>
<ItemsPanelTemplate>
<VariableSizedWrapGrid ItemHeight="5" ItemWidth="5" Orientation="Vertical" ...
-1
votes
1answer
21 views
WP7 maximum application name length
I have to prepare names for application in different languages, the problem is sometimes name is too long and we cant find maximum length. Name of application visible on market is taken from xap file, ...
0
votes
1answer
27 views
C++/CX way of iterating Map<String^, Object^>^?
I have a object of type of Map<String^, Object^>^. How do I iterate in C++/CX way? I am trying to use iterator but I am not clear about syntax. Documentation doesn't provide an example.
0
votes
1answer
34 views
Different splash screen image for snapped view on Win8 store app
I have defined the image in package.appxmanifest with
<SplashScreen Image="foo.png" BackgroundColor="#000000" />
but is it possible to define alternative image for snapped view?
0
votes
0answers
18 views
How to use Node.js in windows 8 javascript app
I read both of these thread:
http://social.msdn.microsoft.com/Forums/en-US/winappswithhtml5/thread/1639e5e9-d334-4bc4-8636-aaac4de9d26b
...
0
votes
1answer
26 views
XAML make animation smooth
I'm animating a GridColumn width property (GridLength) with an ObjectAnimationUsingKeyFrames. My question is, is it possible to make the animation run smooth.
<Storyboard
...
-1
votes
0answers
9 views
WIndows RT App Download File Speed Issue [closed]
i have problem to download file using Background Transfer Api.
i want to download file in Windows RT take double time as compare to Ipad/Iphone
How can improve my download speed in WIndows RT to ...
0
votes
1answer
20 views
Handle System.AccessViolationException on WinRT (windows store)
How to handle System.AccessViolationException on WinRT app using C#
I see http://dotnetslackers.com/articles/net/All-about-Corrupted-State-Exceptions-in-NET4.aspx but does not apply on windows store ...
-1
votes
1answer
24 views
Get Image Link From HTML in Windows Store App
I've tried to use HtmlAgilityPack, but it is not fully supported by WinRT,
The " DocumentElement.SelectNodes " does not work on WinRT
How Can I get An image link (src) from an HTML page ( or HTML ...
0
votes
0answers
13 views
Win8 app to search a printer on a WLAN and let user select a printer and take the printout
I want to implement the following feature in win8 application:-
App detects WLAN name which is in a specific format that enables to detect building and floor
App shows printers that are on the same ...
1
vote
2answers
24 views
How to get a Custom Attribute for all derived classes of a class in Windows Store Apps
I have my
class BaseClass
{
}
and two subclasses like this:
[PostTransformer("test", Precedence=5)]
class SubClassA : BaseClass
{
}
and one attribute
...
0
votes
1answer
33 views
Issue with Swipe inside ListView
I am using a ListView in a Windows Store App.
Whenever I start swiping(using simulator tap mode) over the list view all the items move together as illustrated in the picture.
How can I disable this ...
2
votes
1answer
76 views
How can I use Reactive Extensions to throttle SearchPane.SuggestionsRequested?
Reactive Extensions allow me to "observe" a stream of events. For example, when the user is typing their search query in the Windows 8 Search Pane, SuggestionsRequested is raised over and over (for ...
0
votes
2answers
44 views
Listview remove item border and checkmark
I'm sorry if answer on this question is to easy, but I was realy trying to find answer on the internet, but without any success.
I wish to remove all kind of borders and checkmark's from my listview. ...
2
votes
2answers
75 views
Windows 8 app: accessing local and network files
I started programming Windows 8 apps in C#, and I need help to figure how to access files from within my app.
Premise: from what I learned till this moment, I know that as standard an app can access ...
0
votes
0answers
16 views
Bitmap Fill polygon windows store apps
I create a bitmapimage in windows store app,i want to fill polygon with points and color inside bitmapimage. I can work in wpf but in metro i can't. Can you help me idea?
0
votes
1answer
37 views
How To Create A Bottom Or Top AppBar in Windows Store App Using C#?
I'm aware of the way to create the AppBar via XAML code. I want to know how to create the AppBar via C#.
On the Windows Phone App, i can just do this.
ApplicationBar = new ApplicationBar(){
...
0
votes
1answer
30 views
How to create a single-color Bitmap to display a given hue?
I have a requirement to create an image based on a certain color. The color will vary and so will the size of the output image. I want to create the Bitmap and save it to the app's temporary folder. ...
0
votes
2answers
37 views
How do you bind to the property of a User Control?
In Windows Store Apps, you create a user control to encapsulate and reuse code-behind and layout XAML. A simple user control might look like this:
<UserControl>
<StackPanel>
...
0
votes
1answer
16 views
Full Screen Grid View
i have gridview in my windwos store app and i want this gridview to fill whole screen - to have 100% width and height.
This is my gridview in xaml:
<GridView x:Name="ItmLView" ...
0
votes
1answer
16 views
How is App.OnSearchActivated different from App.OnActivated w/ActivationKind.Search?
If you are implementing the Search Contract on a Windows Store App, then in your App.xaml.cs you override the OnSearchActivated method like this:
protected override void ...


