在哪里/如何找到WP8的正确适当的完整文档? [英] where/how to find the correct appropriate and full documentation for WP8 ?

查看:45
本文介绍了在哪里/如何找到WP8的正确适当的完整文档?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在过去一周左右的时间内,我已经开始开发我的第一个WP8应用程序.

For the last week or so I have started to develop my first WP8 app.

我必须承认我对文档感到困惑,无法找到正确的答案.

I must admit that I am kind of confused regarding the documentation and finding the correct appropriate answers to my questions.

例如,我想了解有关在WP8上发送SMS的信息.

For example, I would like to know about sending SMS on WP8.

因此,我使用Google并找到了一些示例等-但大多数示例都是针对WP7的.到目前为止,我还没有找到针对WP 8的特定示例.

So I use Google and find some examples etc - but most are for WP7.There is no WP 8 specific one I found so far.

1.我怎么知道这在WP8中是否仍然有效(无需亲自尝试:-)?

1. How do I know if this is still valid in WP8 (without trying myself :-) ?

2.我在哪里可以找到所有这些文件的正确且完整的正式文档-适用于新WP8和WP8当前开发环境/不适用于WP7,不是WPF,不是Windows 8 ...

2. Where do I find the correct and full official documentation of all these - valid for new WP8 and the current development environment for WP8 / not WP7, not WPF, not Windows 8...

3.通常,在加载示例代码时,我会遇到各种错误,例如无法访问程序集",无法找到名称空间". (需要的库...)因此,我不得不花时间/浪费时间在我的WP8开发环境中仅使用找到的示例源工作-而不仅仅是 加载并从中学习.

3. Often when loading sample code I get various errors like "can't access assembly", "can't find namespace" (of a needed library...) So I have to spend/waste time making just the found exmple source work on my WP8 development environement - instead of just loading it and learning from it.

4.有时我会找到Windows 8信息-但这并不总是对WP8有效(即使我认为它与WP8兼容)

4. Sometimes I find Windows 8 information - but this is not always valid for WP8 (even though it is supposed to be compatible with WP8 I thought)

成为WP世界的新手,我真的很困惑...

Being new to the WP world I am really confused...

到目前为止,所有这些不同来源在某种程度上都有所帮助,但我想知道是否有更直接的确切方法来获得WP8的完全准确的参考,包括样本和对FOR WP8的每个方法/类的描述.

While so far all these different sources where helpful to some degree, I wonder if there is a more direct exact way to get to the full accurate refence of WP8 including samples and description of each method/class FOR WP8.

我检查了https://dev.windowsphone.com/zh-cn,并检查了所有派生页面,但找不到真正的东西

i checked https://dev.windowsphone.com/en-us, and all derived pages but could not find anything really

例如,对于短信接收者,我有类似的问题:

So for example regading SMS I have questions like:

1.没有明确的用户确认,我可以发送短信吗? (到目前为止,我发现其他开发人员的评论表明WP8无法做到这一点)

1. can I send SMS without explicit user confirmation? ( so far I found comments from other developers that this is not possible on WP8)

2.如何在我的应用程序中知道用户是否实际发送了一条SMS(相对于已取消,或者由于没有接收到,或者因为SIM卡为空,而无法发送……)? (再次,到目前为止,我刚刚发现一些帖子告诉我们在WP8中是不可能的)

2. how do I know in my app if an SMS was actually sent by the user (as opposed to canceled, or could not be sent because no reception, or because the SIM is empty,....) ? (again, so far I just found some posts telling that this is not possible in WP8)

3.我可以接收一定数量的短信(拦截接收)吗?再说一次,我只发现了一些评论,说这是不可能的.

3. Can I receive incoming SMS from a certain number (intercept reception)? And again, I only found some comments about this saying it is not possible)

总而言之,在这个示例中,我的3个问题的答案似乎都是否",但是我没有找到任何类似官方参考的资料.这些都来自互联网上某个地方的各种帖子.

All in all it seems as the anser to my 3 questions in this example are all NO, however I did not find any official reference-like source. It's all coming from various posts somewhere on the internet.

我期望找到某种WP8参考,其中描述了所有WP8类/方法,并且还为至少某些API包括了工作样本.

I would have expected to find some sort of WP8 reference with all WP8 classes/methods described and also working samples included for at least some of the APIs.

请原谅我这个非常基本的问题-但是作为iOS和Android的开发人员,我真的很困惑...

Please forgive me for this rather basic question - but as a developer also for iOS and Android, I am really confused ...

非常感谢!

推荐答案

您的假设是正确的.您不能在用户不知情的情况下发送短信,也不能拦截短信(也许如果您是OEM的话)

Your assumptions are correct. You can't send sms without the user knowing and you can't intercept sms either (maybe if you are an OEM)

可在此站点的顶部搜索该API.树上有示例,还有一个供人们共享代码的论坛.

The API is searchable a the top of this site. There are samples in the tree and there is also a forum for people sharing code.

http://msdn.microsoft.com/zh-CN/library/windowsphone/develop/ff626516%28v=vs.105%29.aspx

还有其他有关短信的帖子,因此搜索可能会派上用场.

There have been other posts regarding sms so search might come in handy.

那是一个很长的帖子.也许只是问问是否有可能建立您的意图,而人们可以提出一些方法或让您知道目前可能无法实现.

That was a really long post. Perhaps just ask if its possible to build what you intend and people can suggest some approaches or let you know it might not be possible at this time.


这篇关于在哪里/如何找到WP8的正确适当的完整文档?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆