WPF save listbox config
UI
<Grid x:Class="WzlyTool.ReplyContentUI" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="497" Width="771" xmlns:my="clr-namespace:WzlyTool"> <Grid.Resources>
<Style TargetType="ListBox" x:Key="listboxStyle">
<Setter Property="FocusVisualStyle" Value="{x:Null}"></Setter> </Style>
<Style TargetType="ListBoxItem">
<Style.Resources>
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="LightGray"></SolidColorBrush>
<SolidColorBrush x:Key="{x:Static SystemColors.ControlBrushKey}" Color="LightGray"></SolidColorBrush>
</Style.Resources>
</Style>
</Grid.Resources> <Grid> <RichTextBox Foreground="#ffeeeeee" Name="txtLog" Margin="46,254,7,35" ScrollViewer.VerticalScrollBarVisibility="Auto" ScrollViewer.HorizontalScrollBarVisibility="Disabled">
<!--设置行间距-->
<RichTextBox.Document>
<FlowDocument Focusable="True" LineHeight="2">
</FlowDocument>
</RichTextBox.Document>
</RichTextBox> <ListBox Name="listBox" SelectionMode="Single" Style="{StaticResource listboxStyle}" >
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal"> <Button Tag="{Binding id}" Name="btnEditItem" Click="btnEditItem_Click" Margin="1,1,12,1">Edit</Button>
<TextBlock TextWrapping="Wrap"/>
<CheckBox Width="300" Checked="CheckBox_Checked" Unchecked="CheckBox_Unchecked" Foreground="{Binding color}"
VerticalAlignment="Center" Content="{Binding msg}" IsChecked="{Binding isChecked}"> <CheckBox.Resources>
<Style TargetType="TextBlock">
<Setter Property="TextWrapping" Value="Wrap" />
</Style>
</CheckBox.Resources>
</CheckBox> </StackPanel> </DataTemplate>
</ListBox.ItemTemplate>
</ListBox> <Button Name="btnSaveConfig"
Content="Save config content" Margin="474,28,0,0" Height="39"
VerticalAlignment="Top"
BorderBrush="#FFE2E2E2"
Background="Gray"
BorderThickness="2"
Foreground="White" Click="btnSaveConfig_Click" HorizontalAlignment="Left" Width="154"> </Button> <Button Name="btnAdd"
Content="+ add content item" Margin="196,28,0,0" Height="39"
VerticalAlignment="Top"
BorderBrush="#FFE2E2E2"
Background="Gray"
BorderThickness="2"
Foreground="White" Click="btnAdd_Click" HorizontalAlignment="Left" Width="154"> </Button> </Grid> </Grid>
the ui class behinde code :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using System.Data;
using System.Net;
using System.Security.Cryptography.X509Certificates;
using System.IO;
using System.Net.Security;
using System.Runtime.Serialization.Formatters.Binary; namespace WzlyTool
{
/// <summary>
/// Interaction logic for ReplyWind.xaml
/// </summary>
public partial class ReplyContentUI : Grid
{
public ReplyContentUI()
{
InitializeComponent();
Loaded += new RoutedEventHandler(ReplyContentUI_Loaded);
listContent = new List<ReplyContentItem>();
listBox.DataContext = listContent;
listBox.ItemsSource = listContent; }
private string file = "reMsg.d";
public List<ReplyContentItem> listContent;
private SolidColorBrush checkedColor = new SolidColorBrush(Colors.Green);
private SolidColorBrush unCheckedColor = new SolidColorBrush(Colors.Gray);
private void btnAdd_Click(object sender, RoutedEventArgs e)
{
ReplyContentItem c = new ReplyContentItem() { color = "Green", isChecked = true, msg = "hello" + DateTime.Now };
listBox.ItemsSource = null;
listContent.Add(c);
listBox.ItemsSource = listContent; } void ReplyContentUI_Loaded(object sender, RoutedEventArgs e)
{
listContent.Add(new ReplyContentItem() { color = "Red", id = Guid.NewGuid().ToString(), isChecked = true, msg = "yuiyui8888888888888yui" });
listContent.Add(new ReplyContentItem() { color = "Gray", id = Guid.NewGuid().ToString(), isChecked = true, msg = "yuiyuiyui" });
listBox.ItemsSource = null;
testLoadConfigContent();
listBox.ItemsSource = listContent; } private void btnSaveConfig_Click(object sender, RoutedEventArgs e)
{
testSaveConfigContent();
} private void CheckBox_Checked(object sender, RoutedEventArgs e)
{ if (((CheckBox)sender).IsChecked == true)
{
((CheckBox)sender).Foreground = checkedColor;
}
else
{
((CheckBox)sender).Foreground = unCheckedColor;
} } private void CheckBox_Unchecked(object sender, RoutedEventArgs e)
{
if (((CheckBox)sender).IsChecked == true)
{
((CheckBox)sender).Foreground = checkedColor;
}
else
{
((CheckBox)sender).Foreground = unCheckedColor;
} } void displayLog(string txt)
{
txtLog.AppendText("" + DateTime.Now + ":" + txt + "\r\n");
txtLog.ScrollToEnd();
} private void btnEditItem_Click(object sender, RoutedEventArgs e)
{
string id = "" + ((Button)sender).Tag;
ReplyContentItem c = listContent.FirstOrDefault(n => n.id == id);
if (c != null)
{ c.msg = "gggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg";
listBox.ItemsSource = null;
listBox.ItemsSource = listContent;
// MessageBox.Show(c.msg ); } } void testLoadConfigContent()
{ try
{ if (!File.Exists(file)) { return; }
List<ReplyContentItem> obj;
// 打开文件,并进行反序列化得到对象
Stream stream = File.Open(file, FileMode.Open);
BinaryFormatter formatter = new BinaryFormatter();
obj = (List<ReplyContentItem>)formatter.Deserialize(stream);
stream.Close();
listBox.ItemsSource = null;
listContent.Clear();
foreach (ReplyContentItem m in obj)
{
if ("" + m.color == "") { m.color = "Green"; }
if (m.isChecked)
{
m.color = "Green";
}
else
{
m.color = "Gray";
}
listContent.Add(m);
} }
catch (Exception ex)
{
MessageBox.Show(ex.Message);
} }
public void testSaveConfigContent()
{ int cnt = listBox.Items.Count;//listView 是UI上的列表控件
List<ReplyContentItem> obj = new List<ReplyContentItem>();
for (int i = 0; i < cnt; i++)
{ // obj.Add (listBox.Items[i] as ReplyContentItem) ;/// new Msg() { isChecked = listView.Items[i] as , word = "test" + i };
obj.Add(listBox.Items[i] as ReplyContentItem);/// new Msg() { isChecked = listView.Items[i] as , word = "test" + i }; }
// 创建一个文件,并将对象序列化后存储在其中
Stream stream = File.Open(file, FileMode.Create);
BinaryFormatter formatter = new BinaryFormatter();
//BinaryFormatter formatter = new BinaryFormatter();
formatter.Serialize(stream, obj);
stream.Close();
// 将对象置空
obj = null;
} } [Serializable]
public class ReplyContentItem
{
public ReplyContentItem()
{
color = "Gray";
id = Guid.NewGuid().ToString();
}
public string id { get; set; }
public string msg { get; set; }
public bool isChecked { get; set; } public string color
{
get;
set;
} } }
another article:WPF C# 序列化保存设置 https://www.cnblogs.com/wgscd/articles/8630128.html
WPF save listbox config的更多相关文章
- WPF ItemsControl ListBox ListView比较
在进行列表信息展示时,WPF中提供多种列表可供选择.这篇博客将对WPF ItemsControl, ListBox, ListView进行比较. 相同点: 1. 这三个控件都是列表型控件,可以进行列表 ...
- WPF中ListBox的项ListBoxItem被选中的时候Background变化
使用WPF 中ListBox,点击ListBoxItem的时候,自定义它的背景色,曾经在网上找了一些方法, 不是很理想,后来在StackOverflow上找到了,贴出代码和效果图: 效果图:
- Android Kernel save defalut config
/********************************************************************************* * Android Kernel ...
- WPF中ListBox滚动时的缓动效果
原文:WPF中ListBox滚动时的缓动效果 上周工作中遇到的问题: 常规的ListBox在滚动时总是一格格的移动,感觉上很生硬. 所以想要实现类似Flash中的那种缓动的效果,使ListBox滚动时 ...
- [WPF系列]-ListBox
引言 本文就WPF中的ListBox常用项给以实例代码演示,包括隐蔽属性的设置,Style设置,以及ControlTemplate的自定义. Listbox平滑滚动 <ListBox Ite ...
- WPF中ListBox控件在选择模式(SelectionMode)为Single时仍然出现多个Item被选中的问题
最近在学习WPF过程中使用到了ListBox控件,在使用时遇到下面的奇怪问题: 代码如下: listBox.Items.Add("绘图"); listBox.Items.Add(& ...
- WPF的ListBox中的RadioButton不能单选问题
WPF不知道是微软故意弄的还是真的匆忙的推出的产品,在实际开发过程中有很多小问题解决很麻烦. 今天主要说一下ListBox中使用RadioButton的时候里面的RadioButton不能单选!居然成 ...
- WPF中ListBox /ListView如何改变选中条背景颜色
适用ListBox /ListView WPF中LISTVIEW如何改变选中条背景颜色 https://www.cnblogs.com/sjqq/p/7828119.html
- 【WPF】ListBox嵌套与事件冒泡
问题:两个ListBox嵌套后,当鼠标位于内部ListBox上,鼠标滚轮事件会被内部ListBox接收,导致外层ListBox不能用鼠标滚轮滑动!现在的需求是该事件要能给外部ListBox处理,即嵌套 ...
随机推荐
- Linux nohup命令应用简介--让Linux的进程不受终端影响
nohup命令应用简介--让Linux的进程不受终端影响 by:授客 QQ:1033553122 #开启ping进程 [root@localhost ~]# ping localhost & ...
- AndroidStudio 3.0升级之compile、implementation简要说明
1.现象 androidStudio 升级至3.0后 之前引用库所使用的complie默认变成implementation 如以下: 3.0之前 compile 'io.reactivex.rxjav ...
- 前端需要掌握的后台基础:HTTP协议
什么是HTTP? 以下来自度娘最为专业的解释: 超文本传输协议(HTTP,HyperText Transfer Protocol)是互联网上应用最为广泛的一种网络协议.所有的WWW文件都必须遵守这个标 ...
- SQL语句结合上下文查询(in查询)
在多个表联合查询时,使用linq语句查询就显得不那么方便了,执行效率也不高, SQL语句查询的优势就显现出来了. using (var context = new YZS_TRAEntities()) ...
- 转:SQL 关于apply的两种形式cross apply 和 outer apply
原文地址:http://www.cnblogs.com/Leo_wl/archive/2013/04/02/2997012.html SQL 关于apply的两种形式cross apply 和 out ...
- jquery.validate,错误信息位置
好长时间没有用jquery.validate.js这个插件了,忘得差不多了.唉,好东西还是要经常拿出来看看的,今天用jquery.validate来做一个小东西,遇到一个问题,就是错误提示信息的位置问 ...
- tp查询顺序
tp竟然可以跟据商品的id来进行排序查询的数据 记一些php中排序: sort()方法一维索引数组进行值升序排序 rsort()方法一维索引数组进行值降序排序 unsort()方法负责编写自定义排序操 ...
- SDN期末作业验收
作业链接:https://edu.cnblogs.com/campus/fzu/SoftwareDefinedNetworking2017/homework/1585 负载均衡程序 1.github链 ...
- 为什么ConcurrentHashMap的读操作不需要加锁?
我们知道,ConcurrentHashmap(1.8)这个并发集合框架是线程安全的,当你看到源码的get操作时,会发现get操作全程是没有加任何锁的,这也是这篇博文讨论的问题--为什么它不需要加锁呢? ...
- 随手练——P1141 01迷宫
1.暴力版 本质上就是求连通块数量,那么DFS或者BFS都行,暴力跑. 写完发现题目比较特殊,m次提问,那每次都暴力搜,肯定是要跑死了. #include <iostream> #incl ...