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的更多相关文章

  1. WPF ItemsControl ListBox ListView比较

    在进行列表信息展示时,WPF中提供多种列表可供选择.这篇博客将对WPF ItemsControl, ListBox, ListView进行比较. 相同点: 1. 这三个控件都是列表型控件,可以进行列表 ...

  2. WPF中ListBox的项ListBoxItem被选中的时候Background变化

    使用WPF 中ListBox,点击ListBoxItem的时候,自定义它的背景色,曾经在网上找了一些方法, 不是很理想,后来在StackOverflow上找到了,贴出代码和效果图: 效果图:

  3. Android Kernel save defalut config

    /********************************************************************************* * Android Kernel ...

  4. WPF中ListBox滚动时的缓动效果

    原文:WPF中ListBox滚动时的缓动效果 上周工作中遇到的问题: 常规的ListBox在滚动时总是一格格的移动,感觉上很生硬. 所以想要实现类似Flash中的那种缓动的效果,使ListBox滚动时 ...

  5. [WPF系列]-ListBox

    引言 本文就WPF中的ListBox常用项给以实例代码演示,包括隐蔽属性的设置,Style设置,以及ControlTemplate的自定义.   Listbox平滑滚动 <ListBox Ite ...

  6. WPF中ListBox控件在选择模式(SelectionMode)为Single时仍然出现多个Item被选中的问题

    最近在学习WPF过程中使用到了ListBox控件,在使用时遇到下面的奇怪问题: 代码如下: listBox.Items.Add("绘图"); listBox.Items.Add(& ...

  7. WPF的ListBox中的RadioButton不能单选问题

    WPF不知道是微软故意弄的还是真的匆忙的推出的产品,在实际开发过程中有很多小问题解决很麻烦. 今天主要说一下ListBox中使用RadioButton的时候里面的RadioButton不能单选!居然成 ...

  8. WPF中ListBox /ListView如何改变选中条背景颜色

    适用ListBox /ListView WPF中LISTVIEW如何改变选中条背景颜色 https://www.cnblogs.com/sjqq/p/7828119.html

  9. 【WPF】ListBox嵌套与事件冒泡

    问题:两个ListBox嵌套后,当鼠标位于内部ListBox上,鼠标滚轮事件会被内部ListBox接收,导致外层ListBox不能用鼠标滚轮滑动!现在的需求是该事件要能给外部ListBox处理,即嵌套 ...

随机推荐

  1. 自定义data-*

    HTML5的自定义属性data-*详细介绍和JS操作实例 < div id="user" data-id="123456" data-name=" ...

  2. 表id关联数据获取至页面,制作下拉框多选进行数据多项获取(字段处理)

     这周完成了一张表单,重点碰到以下问题: 1.freemaker获取年份的type值取year,类型直接为Long,传至后台和获取数据不需要转换: 2.freemaker获取日期type值为date, ...

  3. Expo大作战(二十六)--expo sdk api之Video和WebBrowser

    简要:本系列文章讲会对expo进行全面的介绍,本人从2017年6月份接触expo以来,对expo的研究断断续续,一路走来将近10个月,废话不多说,接下来你看到内容,讲全部来与官网 我猜去全部机翻+个人 ...

  4. linux下opencv编译

    .tar.gz cd opencv-/ cd .. mkdir my_build_dir cd my_build_dir cmake ../opencv- -DWITH_GTK_2_X=ON -DCM ...

  5. Array常用方法总结

    一.[常用语法] 1.1.数组的创建var arrayObj = new Array(); //创建一个数组 var arrayObj = new Array([size]); //创建一个数组并指定 ...

  6. 控制台输出 mybatis 中的sql语句

    控制台输出 mybatis 中的sql语句 在 log4j.xml 文件中 增加如下配置 <!-- mybatis 输出的sql,DEBUG级别 --> <logger name=& ...

  7. MySQL crash-safe replication(2):

    MySQL数据库的成功离不开其replicaiton(复制),相对于Oracle DG和Microsoft SQL Server Log Shipping来说,其简单易上手,基本上1,2分钟内根据手册 ...

  8. 【redis】redis的雪崩和穿透

    1.什么是缓存穿透 一般的缓存系统,都是按照key值去缓存查询,如果不存在对应的value,就应该去DB中查找 .这个时候,如果请求的并发量很大,就会对后端的DB系统造成很大的压力.这就叫做缓存穿透. ...

  9. 乘风破浪:LeetCode真题_027_Remove Element

    乘风破浪:LeetCode真题_027_Remove Element 一.前言 这次是从数组中找到一个元素,然后移除该元素的所有结果,并且返回长度. 二.Remove Element 2.1 问题 2 ...

  10. sql点滴—mysql中查询表的信息

    mysql中查询表的信息 查询mysql表字段信息的sql语句 SHOW DATABASES //列出 MySQL Server 数据库. SHOW TABLES [FROM db_name] //列 ...