windows-store-apps

Need help to remove default Windows 10 apps via powershell

空扰寡人 提交于 2019-12-11 05:15:40
问题 I'm trying to debloat Windows 10 Education by running the following commands in a powershell script. I can get the script to remove the apps for the logged in user but as soon as someone new logs in, the apps reappear. Here is my script: Get-AppxPackage -AllUsers | where-object {$_.name –like “*3DBuilder*”} | Remove-AppxPackage Get-AppxPackage -AllUsers | where-object {$_.name –like “*windowsalarms*”} | Remove-AppxPackage Get-AppxPackage -AllUsers | where-object {$_.name –like “*windowscamera

Visual Studio 2013 Designer View not showing the UI Elements

我的未来我决定 提交于 2019-12-11 04:57:27
问题 I started facing the weird problem recently on my new laptop. I installed a fresh copy of Windows 8.1 and then Visual Studio Ultimate 2013. It worked fine for the first few hours, but the next time I opened it, it did not show the UI elements in the XAML Designer view. There's no error, the XAML code is perfectly alright and then on hovering over the supposed-to-be-visible elements, their outline is visible as well as selectable. Surprisingly this is the case only with all new Windows Store

Msbuild windows store app (metro)

你。 提交于 2019-12-11 04:39:24
问题 I use nugget and Hudson to deploy our libraries to our enterprise for reuse. We recently started work on windows store apps (formerly called Metro app). Hudson runs on a windows server 2008 box. What do I need to install to compile from source to deploy to nuget. Ms build doesn't find the target files needed. Is there a specific SDK to install? 回答1: So, to solve this, I installed the 4.5 framework SDK. After doing so, it was missing the target files, as I mentioned. Then I simply copied

Application configuration files for Windows Universal app

假如想象 提交于 2019-12-11 03:57:48
问题 I have developed a Windows 8.1 Universal app for tablets and phones. Is there any equivalent of App.config file what we used to have in desktop applications in win 8.1 tablets and phones ? Searching over the net revealed nothing. 回答1: No direct equivalent, you need to create something similar by yourself. 回答2: Try to use ApplicationData.Current.LocalSettings in Windows.Storage namespace. Please refer to: Loading and saving settings 来源: https://stackoverflow.com/questions/30730825/application

Restarting Windows Store Apps programmatically

萝らか妹 提交于 2019-12-11 03:47:36
问题 I know that one can use MSApp.terminateApp to kill the application. What about restarting an app? Is there any command for restarting? 回答1: Restarting does not fit within the Windows 8 Application concept (formerly metro). If you get into an unrecoverable state then the appropriate thing to do is let it crash and let windows handle it from there. From here: App crash Apps are required to follow the system crash experience, which is to simply return to the Start screen. The system crash

Flyout.showAt() ArgumentException based on Content

ⅰ亾dé卋堺 提交于 2019-12-11 03:42:17
问题 I am trying to use a Flyout this way this.DefaultViewModel["SelectedVideo"] = vi; Flyout f = new Flyout(); f.Content = this.videoFlyoutContent; f.ShowAt(videosGrid); // HERE I GET AN EXCEPTION while I have the following XAML code <Page.Resource> <!-- ................ --> <!-- ................ --> <x:Double x:Key="FlyoutWidth">500</x:Double> <x:Double x:Key="FlyoutHeight">440</x:Double> <x:Double x:Key="FlyoutTextWidth">400</x:Double> <ContentControl x:Name="videoFlyoutContent"> <Grid

flipviews inside Dynamic listview not swipable

回眸只為那壹抹淺笑 提交于 2019-12-11 03:26:57
问题 I have a listview that is populated during runtime from a webservice. Inside the data template of the listview I have made flipview, each flipview gets three images that user can swipe. I have attached an image of what i am looking for. ISSUE The flipview doesnt get user interactions. here is the xaml below <ListView ManipulationMode="None" IsZoomedInView="False" IsSwipeEnabled="False" > <ListView.ItemTemplate > <DataTemplate> <Grid> <FlipView ItemsSource="{Binding image}" ManipulationMode=

What is the ComposableAttribute in WinRT?

谁说我不能喝 提交于 2019-12-11 03:14:12
问题 I'm trying to understand how some of the more lower-level portions of WinRT work. I came across the ComposableAttribute which may be the key to what I need. However, the documentation on it is very thin. Indicates how a programming element is composed. As you can tell, that doesn't actually tell me anything. Does anyone know what this attribute is used for and what it is suppose to do? 回答1: The ComposableAttribute marks a type as being instantiable for use as a base class across the Windows

List(Of T) groupby visual basic

拟墨画扇 提交于 2019-12-11 03:13:57
问题 i want to Group Movies in gridview by category. i have C# code and i want to convert it to Visual Basic. var moviesByCategories = movies.GroupBy(x => x.Category) .Select(x => new MovieCategory { Title = x.Key, Items = x.ToList() }); i tried the following code but it gives me an error. Dim query = From film In movies Group film.Title By Category = film.Category Into grpTitle = Group UPDATE used converter.telerik.com suggested by Plutonix Dim moviesByCategories = movies.GroupBy(Function(x) x

XAML Storyboard for Background ImageBrush

寵の児 提交于 2019-12-11 02:33:26
问题 I have the following XAML Grid: <Grid Style="{StaticResource LayoutRootStyle}" x:Name="mainGrid"> <Grid.Resources> <Storyboard x:Name="FadeOut"> <DoubleAnimation Duration="3" To="0.0" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="gridBackgroundImageBrush" d:IsOptimized="True"/> </Storyboard> <Storyboard x:Name="FadeIn"> <DoubleAnimation Duration="3" To="0.35" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="gridBackgroundImageBrush" d:IsOptimized="True"/> </Storyboard>