windows-8

Is there a Windows 8 App directory website (not the one accessible from within Windows 8)?

泪湿孤枕 提交于 2019-12-06 11:59:10
Is going through the Windows Shop within Windows 8 the only way to know about the apps that are currently available (and if an app idea is already taken)? I've seen Windows 8 app links like this one - http://apps.microsoft.com/webpdp/en-in/app/bigflix/cd3aa73b-e60e-44b6-bbe9-6898050a3502 ...but going to the root site throws a "403 - Forbidden: Access is denied" and a search for "Windows 8 Store" doesn't provide any useful results. I guess there will be something after the official Windows 8 launch but is there anything else I'm missing? As a developer, I would love to see a summary listing of

Image flickering in Windows RT App

安稳与你 提交于 2019-12-06 11:49:46
I have a Windows RT app where I programmatically change the Bitmap in the Image component. All works well with the XAML and the code below except the flickering we see when the image is changed. What should I change to get rid of the flickering? XAML : <Page x:Class="iSurfBrainViewProto01.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="using:iSurfBrainViewProto01" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc

Async and await confusion

非 Y 不嫁゛ 提交于 2019-12-06 11:45:33
hello friend i got confusion in working of async and await keywords.actually i have written this async function private static async Task FillAssignmentStudentTableFromExtraUsers(int assignmentId, List<JToken> lstOfExtraUser) { await CreatTable.CreatAssignmentStudentTable(); foreach (var item in lstOfExtraUser) { assignmentStudentModel obj = new assignmentStudentModel() { AssignmentId = assignmentId, studentId = (int.Parse)(item.SelectToken("id").ToString()), name = item.SelectToken("name").ToString(), username = item.SelectToken("username").ToString() }; await App.conn.InsertAsync(obj); } }

GroupedItemsPage: View jumps back to start when navigating back from detailpage

半世苍凉 提交于 2019-12-06 11:44:07
问题 I developed a quite popular news app for a newspaper. Unfortunately, my users reported the following problem that I can reproduce: The App basically consists of a GroupedItemsPage and a ItemDetailPage (and several other pages, not important here). The GroupedItemsPage shows the news grouped by category. As the user scrolls to the right, he clicks on one of the items of interests, gets redirected to the ItemDetailPage and navigates back. Back on the GroupedItemsPage the view jumps back to the

Force showing keyboard in metro?

心已入冬 提交于 2019-12-06 11:31:59
I'd like to be able to force the keyboard to show on screen in my Metro app. My goal is to test out different layouts/controls and get a feel for the interaction. My problem is that I'm running Win8 on a MacBook Pro (Parallels) and I don't know how to override the physical keyboard and show it on screen instead. Similarly, I'd like to be able to force rotation if possible. You could run your app the Simulator . You can put the Simulator in "Touch Mode" and that will interpret mouse clicks as touch events in the on screen controls like Text Boxes and you can choose to rotate the Simulator into

NetworkInformation NetworkStatusChanged event fired twice

蹲街弑〆低调 提交于 2019-12-06 11:30:52
I am listening for a network change in my WinRT application using what I believe is the recommended approach. I subscribe to the event using this code. (I have tried in a number of places but currently I have it in the page OnNavigatedTo method). NetworkInformation.NetworkStatusChanged += NetworkInformation_NetworkStatusChanged; Then in the OnNvaigatedFrom method I remove it: NetworkInformation.NetworkStatusChanged -= NetworkInformation_NetworkStatusChanged; When I remove the network cable the NetworkInformation_NetworkStatusChanged event is fired correctly. However, when I plug back in (go

How to share Windows 8 WinRT Metro style libaries/components across apps

Deadly 提交于 2019-12-06 11:30:48
The Metro documentation states that the applications are self-consistent (no shared DLL’s, etc), So I’m just wondering how you can create a modular, BIG Metro application by creating reusable components/libraries. Considering the case for HTML5/JavaScript Metro apps, if a lot of them should contain the same CSS and JavaScript (consider jQuery, templates) or WinJS scripts then it doesn't look quite good … I expected some form of libraries/reuse to exist from the start. The HDD space is definitely cheap nowadays but I think that a versioned library repository should be in place and the

Windows 8 soft keyboard not hidden

青春壹個敷衍的年華 提交于 2019-12-06 11:28:39
We have a Windows Store app that requires the entry of a username and password for accessing a service. When authentication fails connecting to the service we display a popup asking to re-enter their username and password. On a tablet when the user puts the focus on the username or password fields the soft keyboard is displayed correctly. Our login screen is adjusted on detection of the soft keyboard so that all fields and buttons are visible. This all works no problem and when they enter their details and tap on the login button the popup is closed and the app continues. However for some

How to get GridView.Selected Item's Scroll Position in Windows 8 Metro App

和自甴很熟 提交于 2019-12-06 11:24:44
问题 I am selecting gridview item using code, so I also need my gridview to Scrolls at selected item's position , I tried GridView.ScrollintoPosition() but it is not working . IS there any way to get the Scroll position of SelectedItem so that I can scroll it using scrollViewer1.ScrollToHorizontalOffsetWithAnimation() 回答1: There are a few aspects here. I think just gridView.ScrollIntoView(gridView.SelectedItem) should work. It's a bit asynchronous, so the code wouldn't immediately see it scrolled,

Window 8 consuming SharePoint REST Interface through FormsAuthentication?

两盒软妹~` 提交于 2019-12-06 11:19:43
I have created a sample Windows 8 Application getting SharePoint 2010 list data using REST Apis like _vti_bin/ListData.svc I am using NetworkCredential to access the list its working fine. How can I achieve the same results using FormsAuthentication? Code for NetworkCredential: context = new CentralAdministrationDataContext(new Uri("http://<SharePoint_URL>/_vti_bin/ListData.svc")); NetworkCredential credentials = new NetworkCredential(); context.UseDefaultCredentials = false; context.Credentials = new NetworkCredential("UserName", "Password"); 来源: https://stackoverflow.com/questions/14645268