示例#1
0
        public LZForm(LZType type, string incoming, Encoding enc)
        {
            InitializeComponent();

            _type = type;
            _text = incoming;
            _enc  = enc;
        }
示例#2
0
        public LZForm(LZType type, string incoming, Encoding enc)
        {
            InitializeComponent();

            _type = type;
            _text = incoming;
            _enc = enc;
        }
示例#3
0
 public LZForm(LZType type, string incoming) : this(type, incoming, Encoding.GetEncoding("windows-1251"))
 {
 }
示例#4
0
 private void cbZippType_SelectedIndexChanged(object sender, EventArgs e)
 {
     _type = (LZType)cbZippType.SelectedItem;
     nudDictLength.Minimum = _type == LZType.LZV ? 257 : 2;
     UpdateData();
 }
示例#5
0
 private void cbZippType_SelectedIndexChanged(object sender, EventArgs e)
 {
     _type = (LZType)cbZippType.SelectedItem;
     nudDictLength.Minimum = _type == LZType.LZV ? 257 : 2;
     UpdateData();
 }
示例#6
0
 public LZForm(LZType type, string incoming)
     : this(type, incoming, Encoding.GetEncoding("windows-1251"))
 {
 }