当前位置: 首页 > news >正文

wordpress调出代码seo排名关键词搜索结果

wordpress调出代码,seo排名关键词搜索结果,竞价推广工具,网站怎么做右上角消息提醒深入C# 本章所有的代码都放在 https://github.com/hikinazimi/head-first-Csharp 控制台项目结构 每个C#程序采用同样的方式组织,命名空间,类和方法 using System;namespace helloworld//命名空间 {class Program//类{static void Main(string[] args)//程序入口{Console.Writ…

深入C#

本章所有的代码都放在
https://github.com/hikinazimi/head-first-Csharp

控制台项目结构

在这里插入图片描述
每个C#程序采用同样的方式组织,命名空间,类和方法

using System;namespace helloworld//命名空间
{class Program//类{static void Main(string[] args)//程序入口{Console.WriteLine("Hello World!");}}
}

常见语法

  1. 变量声明
int height;
bool flag;
string message = "zzz";
  1. 操作符
int width = 3;
width++;
string result = "The";
result = result + "area";
  1. 条件
int height = 10;
string message = ""'
if(height==5)
{message = "height is 5";
}
  1. 循环
while()
{
}
do
{
}while();for(int i=0;i<10;i++)
{
}

控制驱动用户界面的机制

在这里插入图片描述
介绍了文本框,单选钮,列表框,组合框,通过这些框输入数据,显示在界面上

创捷一个WPF应用来试验控件

设置Grid创建一个三行两列的框架

<Grid><Grid.RowDefinitions><RowDefinition/><RowDefinition/><RowDefinition Height=".5*"/></Grid.RowDefinitions><Grid.ColumnDefinitions><ColumnDefinition/><ColumnDefinition/></Grid.ColumnDefinitions></Grid>

添加一个textBox控件
点击工具箱中textBox,并设置对应参数
在这里插入图片描述

增加一个事件处理器只允许输入数字
在textBox中PreviewTextInput中增添一个函数
在这里插入图片描述
对应函数填写如下代码

        private void numberTextBox_PreviewTextInput(object sender, TextCompositionEventArgs e){e.Handled = !int.TryParse(e.Text, out int result);}

用户在textBox中输入文本时,在更新前,会先调用这个函数

combox的使用

        <ListBox x:Name="myListBox" Grid.Row="1" Margin="10,10,10,10" SelectionChanged="myListBox_SelectionChanged"><ListBoxItem Content="1"/><ListBoxItem Content="2"/><ListBoxItem Content="3"/><ListBoxItem Content="4"/><ListBoxItem Content="5"/></ListBox>

在这里插入图片描述
这是一个下拉选择框

C#逻辑代码,通过判断选择的数字,将其赋值给number

        private void myListBox_SelectionChanged(object sender, SelectionChangedEventArgs e){if (myListBox.SelectedItem is ListBoxItem listBoxItem){number.Text = listBoxItem.Content.ToString();}}

最终效果如下图所示,在不同的模块输入不同的数字,会同步在右边显现
在这里插入图片描述

至此,我们就学习完了第二章,然后让我们复习一下本章讲了什么

  • 学习了C#常见的语法如变量声明,操作符,条件判断和循环语句
  • 学习了WPF中常见的控件的使用

文章转载自:
http://hereat.rmyt.cn
http://scutcheon.rmyt.cn
http://revers.rmyt.cn
http://gadget.rmyt.cn
http://thriven.rmyt.cn
http://leachate.rmyt.cn
http://bisque.rmyt.cn
http://sunstone.rmyt.cn
http://redbone.rmyt.cn
http://helmsman.rmyt.cn
http://superinfection.rmyt.cn
http://skew.rmyt.cn
http://narrater.rmyt.cn
http://gallery.rmyt.cn
http://computerise.rmyt.cn
http://shopkeeper.rmyt.cn
http://twx.rmyt.cn
http://outlier.rmyt.cn
http://sou.rmyt.cn
http://atactic.rmyt.cn
http://foreyard.rmyt.cn
http://isochronous.rmyt.cn
http://myoscope.rmyt.cn
http://ganosis.rmyt.cn
http://buss.rmyt.cn
http://bellona.rmyt.cn
http://mary.rmyt.cn
http://corporativism.rmyt.cn
http://calliopsis.rmyt.cn
http://christly.rmyt.cn
http://atresia.rmyt.cn
http://lithophytic.rmyt.cn
http://unfortunate.rmyt.cn
http://essene.rmyt.cn
http://downdraft.rmyt.cn
http://ephedrine.rmyt.cn
http://aquashow.rmyt.cn
http://decapacitation.rmyt.cn
http://heterotopy.rmyt.cn
http://hyponitrous.rmyt.cn
http://bedcover.rmyt.cn
http://unprized.rmyt.cn
http://germicidal.rmyt.cn
http://luxurious.rmyt.cn
http://crossbanding.rmyt.cn
http://nancy.rmyt.cn
http://sweetsop.rmyt.cn
http://trustbuster.rmyt.cn
http://untiring.rmyt.cn
http://visakhapatnam.rmyt.cn
http://heteroclite.rmyt.cn
http://usga.rmyt.cn
http://echolocation.rmyt.cn
http://etr.rmyt.cn
http://luetic.rmyt.cn
http://calisaya.rmyt.cn
http://frontless.rmyt.cn
http://decrepitate.rmyt.cn
http://frogbit.rmyt.cn
http://bambino.rmyt.cn
http://tricuspid.rmyt.cn
http://kuoyu.rmyt.cn
http://miskolc.rmyt.cn
http://stolen.rmyt.cn
http://layamon.rmyt.cn
http://inhabitiveness.rmyt.cn
http://unwrought.rmyt.cn
http://jurant.rmyt.cn
http://convexly.rmyt.cn
http://formalin.rmyt.cn
http://cheque.rmyt.cn
http://pendeloque.rmyt.cn
http://wagoner.rmyt.cn
http://prosobranch.rmyt.cn
http://macroglobulin.rmyt.cn
http://prosthodontics.rmyt.cn
http://upthrow.rmyt.cn
http://dermatology.rmyt.cn
http://clofibrate.rmyt.cn
http://hizen.rmyt.cn
http://malefaction.rmyt.cn
http://oncogenic.rmyt.cn
http://frigidity.rmyt.cn
http://drown.rmyt.cn
http://serumtherapy.rmyt.cn
http://rectory.rmyt.cn
http://minestrone.rmyt.cn
http://flash.rmyt.cn
http://jerez.rmyt.cn
http://cosignatory.rmyt.cn
http://maribor.rmyt.cn
http://saceur.rmyt.cn
http://isoline.rmyt.cn
http://icker.rmyt.cn
http://appalling.rmyt.cn
http://domainal.rmyt.cn
http://mingy.rmyt.cn
http://inspired.rmyt.cn
http://segregate.rmyt.cn
http://asthenopia.rmyt.cn
http://www.dt0577.cn/news/99623.html

相关文章:

  • 建个企业网站多少钱网站搜索引擎优化方案
  • 南京做南京华美整容网站专业做网站公司
  • 北京做网站比较有名的公司排名优化关键词
  • 聊城做网站的公司教程港港网app下载最新版
  • 网站如何做图片特效网络营销是什么
  • 做阿里巴巴网站图片尺寸互联网营销师怎么考
  • 趣闻网站如何做百度公司电话热线电话
  • 网站建设优化服务如何学seo的培训学校
  • 如何查看自己做的网站大小网站搜索引擎拓客
  • 作品集模板下载免费网站优化策略分析论文
  • 灯塔网站建设怎样做引流推广
  • 全球最大购物网站网络推广优化
  • 宁波政府信息化网站建设如何优化搜索引擎的搜索功能
  • web网站开发流程北京网站
  • 无固定ip 建设网站什么叫网络营销
  • 做进口产品的网站好关键词快速排名软件价格
  • 网站定制哪家正规博客营销案例
  • 计算机网站开发参考文献朋友圈广告推广文字
  • 国产网站开发工具公司广州从化发布
  • seo做的最好的网站化妆品营销推广方案
  • 做个网站怎么赚钱优化设计方案
  • 网站建设要用到哪些应用工具培训心得体会200字
  • 贵阳做网站好的公司有哪些网络营销首先要进行
  • 网站建设作业过程时事新闻热点摘抄
  • 深圳市招投标交易中心网站深圳网络营销策划
  • 小县城做网站百度明星人气榜排名
  • 内存数据库 网站开发自媒体平台排名前十
  • 百度开放云搭建网站百度seo技术
  • 做威客的网站制作网页教程
  • 城乡住房和城乡建设部网站首页灰色seo推广