silverlight visifire控件图表制作——silverlight 静态页面xaml
一、silverlight 静态页面
1、 时间控件:DatePicker ,添加引用: xmlns:sdk="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls",
触发事件:SelectedDateChanged;
2、文本:TextBlock ;
3、下拉框:ComboBox,触发事件:SelectionChanged ;
4、按钮:Button ,触发事件:Click;
5、图表画布:Grid;
6、单选框:CheckBox ,触发事件:Click;
<UserControl x:Class="SilverlightApplication2.Views.ControlChart"
xmlns:sdk="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
xmlns:toolkit="http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit" Loaded="UserControl_Loaded">
<Grid x:Name="LayoutRoot" Background="White">
<TextBlock Text="时间:" Margin="12,16,0,0" Height="25" Width="40" FontSize="13" HorizontalAlignment="Left" VerticalAlignment="Top" />
<sdk:DatePicker x:Name="dateStart" Height="25" SelectedDateFormat="Short" Margin="57,12,0,0" TabNavigation="Local" FontSize="13" HorizontalAlignment="Left" Width="150" VerticalAlignment="Top" SelectedDateChanged="dateStart_SelectedDateChanged"/>
<ComboBox x:Name="dateYear" Height="25" Margin="57,12,0,0" Visibility="Collapsed" TabNavigation="Local" FontSize="13" HorizontalAlignment="Left" Width="100" VerticalAlignment="Top" SelectionChanged="dateStart_SelectedDateChanged" >
</ComboBox>
<TextBlock Text="至" Name="z" Margin="167,16,0,0" Visibility="Collapsed" Height="25" Width="20" FontSize="13" HorizontalAlignment="Left" VerticalAlignment="Top" />
<ComboBox x:Name="enddateYear" Height="25" Margin="192,12,0,0" Visibility="Collapsed" TabNavigation="Local" FontSize="13" HorizontalAlignment="Left" Width="100" VerticalAlignment="Top" SelectionChanged="enddateYear_SelectionChanged">
</ComboBox>
<TextBlock Text="地名:" Name="addressName" Margin="217,16,0,0" Height="25" Width="40" FontSize="13" HorizontalAlignment="Left" VerticalAlignment="Top" />
<ComboBox x:Name="addressNameList" Margin="262,12,0,0" FontSize="13" Height="25" Width="100" HorizontalAlignment="Left" VerticalAlignment="Top" SelectionChanged="addressNameList_SelectionChanged">
<!--<ComboBoxItem Content="大庆"></ComboBoxItem>
<ComboBoxItem Content="华北"></ComboBoxItem>
<ComboBoxItem Content="新疆"></ComboBoxItem>-->
</ComboBox>
<!--<Button Content="查询" Name="btnQuery" FontSize="13" Height="25" HorizontalAlignment="Left" Margin="372,12,0,0" VerticalAlignment="Top" Width="75" Click="button_ClickQuery"/>-->
<Grid Margin="12,43,0,0" Name="gridVisifire" Height="600" Width="800" HorizontalAlignment="Left" VerticalAlignment="Top"></Grid>
<Button Content="返回" Name="btnBack" FontSize="13" Height="25" HorizontalAlignment="Left" Margin="732,12,0,0" VerticalAlignment="Top" Width="75" Click="button_ClickBack" />
<TextBlock Text="显示数据" Name="dtName" Margin="462,16,0,0" Height="25" Width="60" FontSize="13" HorizontalAlignment="Left" VerticalAlignment="Top" />
<CheckBox Background="Blue" Name="showData" Height="17" Width="16" Margin="520,18,0,0" HorizontalAlignment="Left" VerticalAlignment="Top" Click="showData_Click"></CheckBox>
<Button Content="下载" FontSize="13" Height="25" HorizontalAlignment="Left" Margin="372,12,0,0" Name="btnDown" VerticalAlignment="Top" Width="75" Click="btnDown_Click"/>
<Button Content="打印" Name="btnPrint" FontSize="13" Height="25" HorizontalAlignment="Left" Margin="650,12,0,0" VerticalAlignment="Top" Width="75" Click="btnPrint_Click" />
</Grid>
</UserControl>
silverlight visifire控件图表制作——silverlight 静态页面xaml的更多相关文章
- silverlight visifire控件图表制作——silverlight 后台方法页面事件
1.返回事件 (1.返回silverlight页面,2.返回web页面) private void button_ClickBack(object sender, RoutedEventArgs e) ...
- silverlight visifire控件图表制作——silverlight 后台方法ControlChart.xaml.cs
一.构造方法ControlChart 1.前台页面控件赋值 //时间下拉框赋值,下拉框赋选定值 for (int ii = DateTime.Today.Year; ii ...
- silverlight visifire控件图表制作——silverlight 后台方法画图
1.调用wcf 获取信息 private void svc_GetSingleChartDataCompleted(object sender, GetSingleChartDataCompleted ...
- silverlight visifire控件图表制作——silverlight 后台方法打印
一.后台方法 1.添加引用:using System.Windows.Printing; 2.全局变量://定义图片和文本打印变量 PrintDocument printImage; 3.构造方法体 ...
- Silverlight Visifire控件 .net后台控制aspx页面控件的显示与隐藏,动态给控件赋值,选定默认值的设定
.net后台代码: 控件的显示与隐藏: this.dateStart.Visibility = Visibility.Collapsed;//不显示控件 this.dateYear.Visibilit ...
- Silverlight Visifire控件应用去水印
版本几之前可以用属性直接去掉水印: chart.Watermark = false; 现在我用的会报错,已过时,在网上查了写资料,解决办法如下: 一.很多人都是利用摭罩的办法,定位到水印显示的地方,建 ...
- silverlight .net后台 设置visifire控件图表样式 属性说明
.net后台 代码: 如图 Chart chart = new MyCharts(); //图表 //chart.Watermark = false; //没好使 ...
- Silverlight Visifire控件 后台设置颜色
ColorSet cs = new ColorSet(); cs.Id = "colorset1"; // 设置ColorSet 的 Id 为 colorset1 1.cs.Bru ...
- Silverlight Visifire控件应用去除图标的水印
首先,新建一个类,继承自Chart,重写LoadWatermark方法. 再创建图表实例的时候就不能new Chart实例了,直接使用MyCharts. 使用去除水印之前的图片: 使用去除水印之后的图 ...
随机推荐
- Canvas--2
Canvas2(关键词:setLineDash .rect .strokeRect .clearRect .arc.sin .strokeText ) 绘制其他样式: lineCap 结束端点的设 ...
- Sed命令学习
1.Sed简介 流数据编辑器 Stream editer(sed),它是一种行编辑器(对应于全屏编辑器),一次处理一行的内容.默认不编辑原文件内容(-i会直接修改原文件).处理时,它先将当前符 ...
- [转]Windows与Linux系统下的库文件介绍
什么是库 库文件是一些预先编译好的函数的集合,那些函数都是按照可再使用的原则编写的.它们通常由一组互相关联的用来完成某项常见工作的函数构成,从本质上来说库是一种可执行代码的二进制形式,可以被操作系 ...
- WPF、WinForm(C#)多线程编程并更新界面(UI)(转载积累)
using System;using System.Collections.Generic;using System.ComponentModel;using System.Drawing;using ...
- 表单验证提交——submit与button
之前做东西接触过表单验证提交,但是都是为了完成工作,做完就做完了,没有注过表单验证提交有几种方法,各方法都有啥区别.今天瞎折腾了一下,对他们研究了一下,如下是我个人的理解: submit: 从字面上看 ...
- pure.css 学习记录
兼容性记录: IE 8+ Latest Stable: Firefox, Chrome, Safari iOS 6-8 Android 4.x 处理兼容性 <!--[if lte IE 8]&g ...
- 关于老驱动不能在windows 8下正常安装的问题
问题: 老驱动(WDF),能在windows 7下安装并工作,但是不能在windows 8下安装. 先了解下windows 8驱动的新东西吧: New for windows 8 http://msd ...
- 【转】Ubuntu重装,直接进win7,不进linux的解决方案(添加Ubuntu启动菜单)
原文网址:http://my.oschina.net/u/1377657/blog/281875 本人重装了Ubuntu12.04.4 LTS, 将Ubuntu启动项放在了/boot分区里面,启动的时 ...
- jquery点击按钮显示和隐藏DIv
function changeDisplay() { if ($("#btnShow").attr("value")== "添加附件") { ...
- win8开机密码忘了怎么办
原文地址:http://zhidao.baidu.com/question/582486883100064325.html windows8系统虽然让众用户用着不习惯,但是还是拥有大批追随者.今天,绿 ...