Exemple #1
0
 public WordList(Lex.Dane d, UserControl1 uc)
 {
     sentencePanel = uc;
     dane          = d;
     InitializeComponent();
     toolTip.SetToolTip(label1, "godlike	  0\nlegendary 10\nepic      100\nrare      5 000\nuncommon  20 000\ncommon    43625");
 }
Exemple #2
0
 public UserControl1(Sentense s, Lex.Dane d, Form1 f)
 {
     sentence = s;
     dane     = d;
     form     = f;
     InitializeComponent();
     MadeView();
 }
Exemple #3
0
 public Form1()
 {
     InitializeComponent();
     dane = new Lex.Dane();
     dane.Made("./lexicon.txt");
     dane.Find3();
     dane.MadeSentences();
 }
Exemple #4
0
 public WordSmall(Lex.Dane d, Lex.Word w, WordList flp, FlowLayoutPanel f)
 {
     word      = w;
     dane      = d;
     wordList  = flp;
     panelSlow = f;
     InitializeComponent();
 }
Exemple #5
0
 public SentenceListElement(Lex.Dane d, Sentense s, FlowLayoutPanel sl, Form1 f)
 {
     f1      = f;
     senlist = sl;
     dane    = d;
     sentece = s;
     InitializeComponent();
 }
Exemple #6
0
 public Word(Lex.Word w, Lex.Dane d, FlowLayoutPanel flp, Sentense sentence, UserControl1 uc)
 {
     InitializeComponent();
     word          = w;
     dane          = d;
     uc1           = uc;
     panelSentence = flp;
     this.sentence = sentence;
 }
Exemple #7
0
 public SentenceList(Lex.Dane d, Form1 f)
 {
     f1   = f;
     dane = d;
     InitializeComponent();
 }