.NET支持上下左右移动操作
效果如下图:
代码如下:
public partial class ShowSet : System.Web.UI.Page
{
Hashtable resources = EquStatusSearch.resources;
private string names = null;
IniOperation ini = new IniOperation("i18n"); protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
names = QuarrysClass.All;
initi18n(); string[] all =string.IsNullOrEmpty(names)?null: names.Split(',');//分割出所有列
hidfShows.Value =ini.IniValue("Set", "Show");
string include = hidfShows.Value;//获取当前页展示列
if (string.IsNullOrEmpty(names)||all == null)
{
//请先点加载配置信息
return;
}
for (int i = 0; i < all.Length; i++)//遍历所有列
{
if (include.IndexOf("@" + all[i] + "@") == -1)//当前列中不包含分割出来的列时放在不显示框中
{
xListBox1.Items.Add(new ListItem(resources[all[i]].ToString(),all[i]));
}
}
string[] showNames = include.Split(',');
string newName=string.Empty;
foreach (string name in showNames)
{
newName = name.Trim('@');
string colName = resources[newName] == null ? string.Empty : resources[newName].ToString();
if (!string.IsNullOrEmpty(newName))
{
xListBox2.Items.Add(new ListItem(colName, newName));
}
}
}
} //调用显示和展示字段名称
private void initi18n()
{
this.Page.Title =string.IsNullOrEmpty(resources["ShowSetName"].ToString())? "字段显示设置" : resources["ShowSetName"].ToString();
xLabel1.Text =string.IsNullOrEmpty(resources["ShowSetNoShow"].ToString())?"不显示字段":resources["ShowSetNoShow"].ToString();
xLabel2.Text = string.IsNullOrEmpty(resources["ShowSetShow"].ToString())?"显示字段":resources["ShowSetShow"].ToString();
} //将未显示字段右移到显示字段框,并清除掉不显示的选择到的项
protected void xButton1_Click(object sender, EventArgs e)
{
if (xListBox1.SelectedItem == null)
{
return;
}
xListBox2.Items.Add(xListBox1.SelectedItem);
xListBox1.Items.Remove(xListBox1.SelectedItem);
} //将显示字段左移到未显示字段框,并清除掉显示的选择到的项
protected void xButton2_Click(object sender, EventArgs e)
{
if (xListBox2.SelectedItem == null)
{
return;
}
xListBox1.Items.Add(xListBox2.SelectedItem);
xListBox2.Items.Remove(xListBox2.SelectedItem);
} //将左边所有不显示项加到右边的显示项中
protected void xButton3_Click(object sender, EventArgs e)
{
foreach (ListItem item in xListBox1.Items)
{
xListBox2.Items.Add(item);
}
xListBox1.Items.Clear();
} //将右边所有不显示项加到左边的显示项中
protected void xButton4_Click(object sender, EventArgs e)
{
foreach (ListItem item in xListBox2.Items)
{
xListBox1.Items.Add(item);
}
xListBox2.Items.Clear();
} //点击设置按钮事件,
protected void btnSet_Click(object sender, EventArgs e)
{
try
{
string str = "";
for (int i = 0; i < xListBox2.Items.Count; i++)//循环添加显示项组成字符串
{
str += "@" + xListBox2.Items[i].Value + "@,";
}
if ("".Equals(str))//如果显示项为空直接清除显示页面的所有字段
{
QuarrysClass.Shows = "";
}
else
{
//重新复制显示字段到显示页面
QuarrysClass.Shows = str.Substring(0, str.Length - 1);
}
//调用主页面将显示字段写入到i18n文件中
ini.IniWriteValue("Set", "Show", QuarrysClass.Shows);
Page.ClientScript.RegisterStartupScript(this.GetType(), "warn", "alert('设置成功!');window.opener.searchData();window.close();", true); }
catch (Exception ex)
{
string strScript = string.Format("alert('设置失败!{0}');", ex.Message);
Page.ClientScript.RegisterStartupScript(this.GetType(), "warn", strScript, true);
}
} //上移
protected void btnUp_Click(object sender, EventArgs e)
{
UpMove(xListBox2);
} //下移
protected void btnDown_Click(object sender, EventArgs e)
{
DownMove(xListBox2);
} void UpMove(ListBox ListBox2)
{
//若不是第一行则上移
if (ListBox2.SelectedIndex > 0)
{
string name = ListBox2.SelectedItem.Text;
string ID = ListBox2.SelectedItem.Value;
int index = ListBox2.SelectedIndex;
ListBox2.SelectedItem.Text = ListBox2.Items[index - 1].Text;
ListBox2.SelectedItem.Value = ListBox2.Items[index - 1].Value;
ListBox2.Items[index - 1].Text = name;
ListBox2.Items[index - 1].Value = ID;
ListBox2.SelectedIndex--;
}
} void DownMove(ListBox lbox)
{
if (lbox.SelectedIndex < lbox.Items.Count - 1)
{
string name = lbox.SelectedItem.Text;
string ID = lbox.SelectedItem.Value;
int index = lbox.SelectedIndex;
lbox.SelectedItem.Text = lbox.Items[index + 1].Text;
lbox.SelectedItem.Value = lbox.Items[index + 1].Value;
lbox.Items[index + 1].Text = name;
lbox.Items[index + 1].Value = ID;
lbox.SelectedIndex++;
}
} void TopMove(ListBox lbox)
{
int index = 0;
ListItem item = lbox.SelectedItem;
lbox.Items.Remove(item);
lbox.Items.Insert(index, item);
} void BottomMove(ListBox lbox)
{
int index = lbox.Items.Count - 1;
ListItem item = lbox.SelectedItem;
lbox.Items.Remove(item);
lbox.Items.Insert(index, item);
} protected void btnTop_Click(object sender, EventArgs e)
{
TopMove(xListBox2);
} protected void btnBottom_Click(object sender, EventArgs e)
{
BottomMove(xListBox2);
} }
.NET支持上下左右移动操作的更多相关文章
- 开源 iOS 项目分类索引大全 - 待整理
开源 iOS 项目分类索引大全 GitHub 上大概600个开源 iOS 项目的分类和介绍,对于你挑选和使用开源项目应该有帮助 系统基础库 Category/Util sstoolkit 一套Cate ...
- 从ListView逐步演变到RecyclerView
ListView是我们开发中最常用的组件之一,在以往的PC端组件开发中,列表控件也是相当重要的,但是从桌面端到移动端,情况又有新的变化. 移动端的屏幕并不像桌面端那么大,并且移动端不可能把所有的内容都 ...
- 史上最全的常用iOS的第三方框架
文章来源:http://blog.csdn.net/sky_2016/article/details/45502921 图像: 1.图片浏览控件MWPhotoBrowser 实现了一个照片 ...
- 59.Android开源项目及库 (转)
转载 : https://github.com/Tim9Liu9/TimLiu-Android?hmsr=toutiao.io&utm_medium=toutiao.io&utm_so ...
- 常用iOS的第三方框架
图像:1.图片浏览控件MWPhotoBrowser 实现了一个照片浏览器类似 iOS 自带的相册应用,可显示来自手机的图片或者是网络图片,可自动从网络下载图片并进行缓存.可对图片进行缩放等 ...
- [Aaronyang]谈谈2015年AY对WPF全面技术总结40多篇WPF,炫到没朋友的AYUI来了
原著:AY WPF博客- 把wpf推广出去,让那些鄙视的人说不 大家好! 我是AY,首先声明,我在做一件很枯燥的事情,我是个91后程序员,每天熬夜完成计划的过着下班后的生活. 那天有 ...
- Android开源项目及库搜集
TimLiu-Android 自己总结的Android开源项目及库. github排名 https://github.com/trending,github搜索:https://github.com/ ...
- Unix/Linux环境C编程入门教程(21) 各个系统HelloWorld跑起来效果如何?
Unix/Linux家族人员众多,我们无法一一讲解如何配置环境. 本文选定我们在前面安装的RHEL6 RHEL7 MAC10.9.3 Solaris11如何跑起来helloworld RHEL 6 上 ...
- 开源 iOS 项目分类索引大全
GitHub 上大概600个开源 iOS 项目的分类和介绍,对于你挑选和使用开源项目应该有帮助 系统基础库 Category/Util sstoolkit 一套Category类型的库,附带很多自定义 ...
随机推荐
- Java之JDOM生成XML和解析
一.生成XML文件 1.JDOM是对Java原始的类进行了封装.让解析XML文件变得很方便 2.创建一个XML文件的根节点: Element root = new Element("HD&q ...
- 分蛋糕(C - 二分查找)
分蛋糕 题目链接:http://acm.hust.edu.cn/vjudge/contest/view.action?cid=85904#problem/C Description My birthd ...
- codeforces 559A(Gerald's Hexagon)
Time Limit:2000MS Memory Limit:262144KB 64bit IO Format:%I64d & %I64u Description Gera ...
- UVa----------1594(Ducci Sequence)
题目: 1594 - Ducci Sequence Asia - Seoul - 2009/2010A Ducci sequence is a sequence of n-tuples of inte ...
- Recursive Depth first search graph(adj matrix)
1 深度优先遍历邻接矩阵 1 邻接矩阵初始化 2 访问数组初始化 3 深度优先遍历邻接矩阵图 算法如下: bool MGraph[128][128]; bool visit[128]; int vex ...
- java 利用java运行时的方法得到当前屏幕截图的方法(转)
将截屏图片保存到本地路径: package com.test; import java.awt.AWTException; import java.awt.Dimension; import java ...
- Android Camera调用过程分析
源代码版本:allwinner 4.0.4 frameworks代码: frameworks/base/core/java/android/hardware/Camera.java JNI层代码: f ...
- XMPP--- error : linker command failed with exit code 1
error: linker command failed with exit code 1 (use -v to see invocation) 错误原因:libidn.a文件没添加上去 解决方法:l ...
- 【OpenCV】OpenCV2.4.6 与Visiual Studio 2008,Python2.7.5配置和图像载入显示
自从OpenCV2.2开始,OpenCV 库便分成几个模块并位于lib文件中,本节介绍从OpenCV2.4.6与VS2008 .Python2.7.5如何配置环境,如何外部文件载 入图像.在窗口中显示 ...
- 【Oracle】wmsys.wm_concat函数字段值为空
这个是因为字符集的问题,和空值是没关系的.其实已经取到了数据,可以验证一下返回的不是0,但是由于这个里面有个chr(0)字符,而且可能第一个字符就是chr(0),所以就显示得怪异的空现象.至于为何会出 ...