private void RefreshVocab()
 {
     vocab      = Core.GetVocab();
     Text       = vocab.filter;
     Filt.Text  = vocab.filter;
     Query.Text = vocab.addAsQuery;
 }
示例#2
0
 private void RefreshVocab()
 {
     vocab             = Core.GetVocab();
     Text              = vocab.sort;
     radioButton1.Text = vocab.increase;
     radioButton2.Text = vocab.decrease;
     button1.Text      = vocab.add;
     button2.Text      = vocab.sort;
 }
 private void RefreshVocab()
 {
     vocab              = Core.GetVocab();
     LabelAddress.Text  = vocab.address;
     LabelControl.Text  = vocab.control;
     LabelCounty.Text   = vocab.county;
     LabelFax.Text      = vocab.fax;
     LabelID.Text       = vocab.id;
     LabelLocation.Text = vocab.location;
     LabelName.Text     = vocab.name;
     LabelClasses.Text  = vocab.numClasses;
     LabelPhone.Text    = vocab.phone;
     LabelType.Text     = vocab.type;
     LabelWebsite.Text  = vocab.website;
 }
示例#4
0
        private void RefreshVocab()
        {
            vocab = Core.GetVocab();
            AssemblyName name = Assembly.GetEntryAssembly().GetName();

            button1.Text = vocab.ok;
            Title.Text   = name.Name;
            Version.Text = vocab.version + ": " + name.Version.ToString();
            Desc.Text    = vocab.appdesc + "\r\n" + vocab.teammembers +
                           ":\r\n- " + vocab.mentor + " - Filip Marić (" + vocab.professor + " " + vocab.at + " " + vocab.mg + " " + vocab.and + " " + vocab.rg +
                           ")\r\n- Luka Simić (1. " + vocab.grade + " " + vocab.at + " " + vocab.rg +
                           ")\r\n- Lazar Premović (1. " + vocab.grade + " " + vocab.at + " " + vocab.rg +
                           ")\r\n- Mateja Brnabić (1. " + vocab.grade + " " + vocab.at + " " + vocab.rg +
                           ")\r\n- Katarina Krivokuća (1. " + vocab.grade + " " + vocab.at + " " + vocab.mg +
                           ")";
        }
 private void RefreshVocab()
 {
     vocab               = Core.GetVocab();
     Text                = vocab.loaderTitle;
     View.Text           = vocab.viewData;
     Filter.Text         = vocab.filter;
     Sort.Text           = vocab.sort;
     Ptable.Text         = vocab.chart;
     Map.Text            = vocab.map;
     ChangeLanguage.Text = vocab.changeLanguage;
     OtherGroup.Text     = vocab.other;
     LanguageGroup.Text  = vocab.language;
     Help.Text           = vocab.help;
     About.Text          = vocab.about;
     ToolsGroup.Text     = vocab.tools;
 }
示例#6
0
        public static List <Skola> GetFilter(string FilterKeyword)
        {
            Vocab vocab = GetVocab();

            if (FilterKeyword == vocab.all)
            {
                return(Skole);
            }
            else if (FilterKeyword == vocab.none)
            {
                return new List <Skola> {
                }
            }
            ;
            else
            {
                return(Queries[FilterKeyword]);
            }
        }
示例#7
0
 private void RefreshVocab()
 {
     vocab = Core.GetVocab();
     Text  = vocab.viewer;
 }
示例#8
0
 private void RefreshVocab()
 {
     vocab     = Core.GetVocab();
     Text      = vocab.chart;
     View.Text = vocab.view;
 }
 private void RefreshVocab()
 {
     vocab     = Core.GetVocab();
     Text      = vocab.queryPickerTitle;
     Pick.Text = vocab.use;
 }
示例#10
0
 private void RefreshVocab()
 {
     vocab = Core.GetVocab();
     Text  = vocab.map;
 }