开始是一些欢迎,就不翻译

Question: Is the code already there?

Answer: There is some code on that codeplex site, but more will be added after this course.

Q:是否已经有代码(xaml解析的代码)?

A:现在已有一些代码,不过更多的会在之后发布,http://xaml.codeplex.com

Q:we need no VS?

A:Yes, you need VS.

Q:需要安装visual studio?

A:是的,需要安装visual studio 2015

Q:Can’t universal apps also be used on the Xbox One platform

A:Mike, good point. We announced at BUILD in April that the Universal Windows app model will extend to XBOX ONE, but that is not available yet nor is it covered in this training.

Q:是否通用程序可以使用在Xbox平台

A:是的,我们4月宣布BUILD可以把通用应用UWA扩展到Xbox,但还没有一个好的教程。

Q:it is free to public any app in the store ?

A:To publish an app in the store, you need to sign up for a developer license, which costs $19

Q:提交到商店应用是免费的?

A:要提交到应用商店,你必须注册成为开发者,注册需要$19 ¥119

Question: $19 for a month or year ?

Answer: $19 forever.

Q:$19一个月还是一年?

A:$19永久

Q:I know nothing about xaml yet, should I leave or what

A:Hamid, stick around! You will learn a lot here, even if you do not know XAML

Q:我不知道一点xaml知识,我需要离开还是怎么办

A:留下来,在这里你会学到很多东西,即使你不知道xaml

Q:a good way to backup your code is to use OneDrive

A:I agree, all my dev projects reside in OneDrive, but I am also using GitHub & Visual Studio Online (with Git endpoints)

Q:备份您的代码的好方法是使用OneDrive

A:我同意,我所有的开发项目位于OneDrive,但是我也使用GitHub & Visual Studio在线(Git端点)

Q:Missed the beginning, can you build universal apps with html and javascript?

A:Martin, yes, the Universal app model works for HTML & JavaScript too (i.e. WinJS), as well as XAML with either VB, C# or C++

Q:开始不是学C#,能够使用 html and javascrip开发UWA应用?

A:通用应用适用于HTML和JavaScript(例如WinJS),以及XAML用VB、c#或c++

Question: How do you tie an existing phone app to store app? (The names may not be the same)

Answer: John, you’ll have to publish an update and reserve the same name for both the Windows Phone and Windows Store version, that will link them

Q:你如何把现有的手机应用和商店应用程序联系起来?(可能不是相同的名称)

A:约翰,你必须发布一个更新和储备相同的名称为Windows Phone和Windows版本存储联系他们。

Question: is there anything that we should download or need for this class besides visual studio

Answer: make sure you have Visual Studio 2013 with Update 3. You can use either the Express for Windows version, or Professional and higher

Q:我们需要下载什么?除了visual studio提供的环境

A:确保你有Visual Studio 2013 with Update 3。您可以使用Express for Windows version。

Question: Someone has reserved app name I used on the phone so I guess I have to rename the phone app

Answer: John, it can happen. Support can sometimes help with naming issues

Q:有人的应用名字和我的相同,我必须重命名我的手机应用?

A:ohn,它可能发生。support有时可以帮助命名问题

Question: I’m sorry if I my question is inappropriate, but I’ve been trying for a few days to render animated GIF images in a universal app. What is the right way to do it? Thanks in advance!

Answer: I recommend you take a look at the Nokia Imaging SDK to work with animated GIFs in Universal apps

Q:我很抱歉,如果我,我的问题是不合适的,但我一直很努力了几天,在一个普遍应用呈现动画GIF图像。正确方法是怎么做?先谢谢!

A:我建议你看看诺基亚成像SDK处理动态gif在UWA

Question: Hello, is it possible to put project references into the shared project?

Answer: No, Shared Projects do not have their own references since they have no build targets. Their contents is just merged with the Windows or Windows Phone project at build time

Q:使项目引用共享项目是有可能吗?

A:不,共享项目没有自己的引用,因为它们没有构建目标。其内容是与Windows或Windows Phone项目在构建时合并

Question: you never got around answering the question about xamarin. Is a universal app able to be imported in xamarin?

Answer: No, Universal apps are for Windows and Windows Phone and are based on the Windows Runtime. Xamarin apps are for iOS and Android and are based on Mono, which uses .NET profile 78. There would be incompatibilities in code. There are ways allowing you to share code between Universal Windows Apps and Xamarin apps with Portable Class Libraries (PCL), but that is beyond the scope of this course

Q:你从来没有对xamarin的回答这个问题。一种通用应用程序能够被导入xamarin?

A:不,PC的UWA和wp的是在微软windows运行时上运行,Xamarin 应用是使用Mono在ios和安卓上。会有不兼容的代码。有方法让你在UWA之间可以共享代码和Xamarin的应用与便携类库Portable Class Libraries (PCL),但这超出了本课程的范围

Question: hey nick my question is when i’m done implementation my project how can I submit my universal application I know windows 8.1 i’ll create package and upload it and windows phone 8.1 how about shared solution ? that’s all I want thank you

Answer: Shahed, Universal apps let you share code but they still generate two appx packages, which both have to be submitted to the store separately

Q:我的问题是当我已经实现了我的项目,问题是如何提交我的通用应用程序,我知道我的是windows 8.1,我将创建包,上传和windows phone 8.1共享解决方案,这样做还需要什么?

A:UWA让您共享代码,但他们仍然生成两个附录包,都必须单独提交应用商店

<script type="text/javascript">
$(function () {
$('pre.prettyprint code').each(function () {
var lines = $(this).text().split('\n').length;
var $numbering = $('<ul/>').addClass('pre-numbering').hide();
$(this).addClass('has-numbering').parent().append($numbering);
for (i = 1; i <= lines; i++) {
$numbering.append($('<li/>').text(i));
};
$numbering.fadeIn(1700);
});
});
</script>

Developing Universal Windows Apps 开发UWA应用 问答的更多相关文章

  1. MVA Universal Windows Apps系列学习笔记1

    昨天晚上看了微软的Build 2015大会第一天第一场演讲,时间还挺长,足足3个小时,不过也挺震撼的.里面提到了windows 10.Microsoft edge浏览器.Azure云平台.Office ...

  2. 2019-8-31-Developing-Universal-Windows-Apps-开发UWA应用-问答

    title author date CreateTime categories Developing Universal Windows Apps 开发UWA应用 问答 lindexi 2019-08 ...

  3. 使用 .NET 平台,如何玩转 Universal Windows 应用?

    2015年7月30日 本文作者是 Managed Languages 团队项目经理 Lucian Wischik. 不久前,Visual Studio 2015上新增 Windows 10 应用的开发 ...

  4. 使用 Portable Class Library(可移植类库)开发 Universal Windows App

    今天在这里跟大家聊聊关于 Windows Universal 应用夸平台的问题,首先Universal Windows App的定义相信大家已经有所了解了(如果你是一个刚刚接触 Universal A ...

  5. DEPLOYING NATIVE UWP (UNIVERSAL WINDOWS PLATFORM) APPS FOR JAVA DEVELOPERS & PUBLISHING THEM TO THE MICROSOFT STORE

    原文: DEPLOYING NATIVE UWP (UNIVERSAL WINDOWS PLATFORM) APPS FOR JAVA DEVELOPERS & PUBLISHING THEM ...

  6. Windows Phone开发需要了解的背景

    在Windows Phone8.1之前,Windows Phone应用是基于Silverlight的,这些代码也不能在Windows上运行,从Windows Phone8.1开始,开发者多了一个选择, ...

  7. 欢迎参加MVP主讲的Windows 10开发线上课程

    博客地址:http://blog.csdn.net/FoxDave Windows 10 Developer Readiness - Powered by MVPs - 由微软最有价值专家(MVP)主 ...

  8. [原]Universal Windows问题:winapifamily问题:WINAPI_PARTITION_DESKTOP问题:WINAPI_PARTITION_APP问题:WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)问题

    问题回顾: 我新建的生成dll的vs问题: 此vs项目包含需要GL.h 结果此文件声明的GLint找不到! 进去发现#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITI ...

  9. 将Win8.1/WP8.1应用迁移到Universal Windows Platform

    在上一篇在VS2015 RC打开CTP中创建的工程,我们介绍了怎么在RC中打开CTP中创建的Universal 工程,这一篇我们来讲下怎么将Windows 8.1/WP8.1的应用迁移到Univers ...

随机推荐

  1. Swing-JOptionPane对话框用法-入门

    对话框是GUI程序中常见的界面,通常用来反馈提示信息.告警或获取用户输入.比如这种: JOptionPane是Swing中的一个对话框类,它能够提供常见的绝大多数对话框效果,本文对这个类进行介绍.需要 ...

  2. Java学习3——java介绍

    Java程序运行过程: Java两种核心机制: Java虚拟机(Java Virtual Machine),提供程序运行的解释环境,使Java成为一种与平台无关的语言. Java虚拟机可以理解成一个以 ...

  3. 201521123097《Java程序设计》第六周学习总结

    1. 本周学习总结 1.1 面向对象学习暂告一段落,请使用思维导图,以封装.继承.多态为核心概念画一张思维导图,对面向对象思想进行一个总结. 2. 书面作业 1.clone方法 1.1 Object对 ...

  4. 201521123014 《Java程序设计》第5周学习总结

    1. 本周学习总结 1.1 尝试使用思维导图总结有关多态与接口的知识点. 2. 书面作业 Q1. 代码阅读:Child压缩包内源代码 1.1 com.parent包中Child.java文件能否编译通 ...

  5. 201521123094 《Java程序设计》第1周学习总结

    1. 本周学习总结 ① Java根据应用领域分为三大平台:Java SE.Java EE.Java ME.Java SE平台,作为各大平台的基础,它分成JVM/JRE/JDK/Java语言四个主要部分 ...

  6. 201521123071《Java程序设计》第1周学习总结

    1. 本章学习总结 通过本周的学习,对java的一些语法以及java的发展史有了一定的基础认识,也了解了JDK的安装,以及环境变量定义和配置等知识.还有对码云,Markdown等的使用,大大方便了我们 ...

  7. 201521123069 《Java程序设计》 第9周学习总结

    1. 本章学习总结 1.1 以你喜欢的方式(思维导图或其他)归纳总结异常相关内容. (1)使用try...catch语句捕获异常(try块后可跟一个或多个catch块,注意子类异常要放在父类异常前面, ...

  8. 201521123019 《Java程序设计》第10周学习总结

    1. 本周学习总结 2. 书面作业 本次PTA作业题集异常.多线程 1.finally 题目4-2 1.1 截图你的提交结果(出现学号) 1.2 4-2中finally中捕获异常需要注意什么? 只有执 ...

  9. 《Head First Java》读书笔记(2) - Java面向对象思想

    1.了解继承 对象继承实际上就是一种"is - a"的关系,如上图的"PantherMan is a SuperHero?",是,那么便属于继承的理解. 继承能 ...

  10. 非position:fixed,footer自動調到屏幕底部

    一.980px手機端寫法: $(function(){        var sh=$('section').height();     var ww=$(window).width();       ...