Loading

摘要: 今天打算用VisualStudio2012做一个js效果页面测试的时候,打开VS2012新建项目,但是并没有像之前那样顺利的创建页面,而是弹出了一个错误窗口。我的系统是win8专业版 64位 ,同时安装了VS2010和VS2012。然后我又试了一下VS2010,新建项目、新建网站等等,一切正常。额,看来这个问题就是只和VS2012有关系了。百度一番之后,找到了两篇文章:vs2012建立c++项目为啥会这样? - CSDN论坛 - CSDN.NETVS2012出问题了 一创建新项目就弹出 ”未找到与约束“ - CSDN论坛 - CSDN.NET以上两篇文章基本上总结起来就是最近更新的window 阅读全文
posted @ 2013-08-26 18:46 androllen 阅读(532) 评论(0) 推荐(0) 编辑
摘要: ... 阅读全文
posted @ 2013-08-25 16:57 androllen 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 字符串声明:C#:string name = “lwme.cnblogs.com”; Objective-C:NSString *name = @”lwme.cnblogs.com”;字符串前面的@符号是objc在标准C语言基础上添加的特性,"SteveZ"前面有一个@符号表示字符串应该作为Cocoa的NSString来处理,是把C string转换成NSString的一个简写。获取长度:C#:name.LengthObjective-C:[name length]name.length转换:C#:int i = 10;string age = i.ToString();i 阅读全文
posted @ 2013-08-16 21:04 androllen 阅读(582) 评论(0) 推荐(0) 编辑
摘要: 全局跳转(App.Current.RootVisual as PhoneApplicationFrame).Navigate(new Uri("/Tools/SpatialQueryChart.xaml", UriKind.Relative));局部跳转NavigationService.Navigate(new Uri("/DetailsPage.xaml",Urikind.Relative));全局跳转2public void GoBack(int iNumber) { PhoneApplicationFrame root = (PhoneAppli 阅读全文
posted @ 2013-08-08 16:48 androllen 阅读(273) 评论(0) 推荐(0) 编辑
摘要: C++编程语言是一款应用广泛,支持多种程序设计的计算机编程语言。我们今天就会为大家详细介绍其中C++多态性的一些基本知识,以方便大家在学习过程中对此能够有一个充分的掌握。 多态性可以简单地概括为“一个接口,多种方法”,程序在运行时才决定调用的函数,它是面向对象编程领域的核心概念。多态(polymorphisn),字面意思多种形状。 C++多态性是通过虚函数来实现的,虚函数允许子类重新定义成员函数,而子类重新定义父类的做法称为覆盖(override),或者称为重写。(这里我觉得要补充,重写的话可以有两种,直接重写成员函数和重写虚函数,只有重写了虚函数的才能算作是体现了C++多态性)而重载则是.. 阅读全文
posted @ 2013-07-10 16:53 androllen 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 请问如何在应用内跳转到显示来自XX的更多应用?Windows.System.Launcher.LaunchUriAsync(newUri("zune:search?publisher="+publisher));publisher为你的开发商名字的字符串 阅读全文
posted @ 2013-07-05 16:06 androllen 阅读(154) 评论(0) 推荐(0) 编辑
摘要: //////Represents a dictionary mapping keys to values.////////////Provides the plumbing for the portions of IDictionarywhich can reasonably be implemented without any///dependency on the underlying representation of the dictionary.///[DebuggerDisplay("Count = {Count}")][DebuggerTypeProxy(PR 阅读全文
posted @ 2013-06-26 10:23 androllen 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 重写OnBackKeyPress事件,设置 e.cancel=true;然后加弹窗代码,为确定按钮订阅事件委托,委托方法里加Application.Current.Terminate();退出方法即可 阅读全文
posted @ 2013-06-19 14:16 androllen 阅读(329) 评论(0) 推荐(0) 编辑
摘要: <phone:PhoneApplicationPage.Resources> <Style x:Key="PhoneTextBoxStyle1" TargetType="toolkit:PhoneTextBox"> <Setter Property="FontFamily" Value="{StaticResource PhoneFontFamilyNormal}"/> <Setter Property="FontSize" Value="{S 阅读全文
posted @ 2013-06-08 09:58 androllen 阅读(370) 评论(0) 推荐(0) 编辑
摘要: <Grid x:Name="LayoutRoot" Background="Transparent"> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="*"/> </Grid.RowDefinitions> <!--TitlePanel 包含应用程序的名称和页标题--> <StackPanel x:Name="TitlePan 阅读全文
posted @ 2013-05-30 16:02 androllen 阅读(138) 评论(0) 推荐(0) 编辑