Esempio n. 1
0
        public LZForm(LZType type, string incoming, Encoding enc)
        {
            InitializeComponent();

            _type = type;
            _text = incoming;
            _enc  = enc;
        }
Esempio n. 2
0
        public LZForm(LZType type, string incoming, Encoding enc)
        {
            InitializeComponent();

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