Ejemplo n.º 1
0
        public void Filtruj(string strVlastnost, object objHodnota)
        {
            UkazFilter fuk = new UkazFilter(true, objHodnota.ToString());

            mglsSerazene.FindAll(fuk.ObsahujeText);
            PriZmeneSeznamu(new ListChangedEventArgs(ListChangedType.Reset, -1));
            base.Clear();
        }
Ejemplo n.º 2
0
        private void PouzijFiltr()
        {
            mglsSerazene = new List <Ukaz>(mglsNeserazene);

            UkazFilter fuk = new UkazFilter(true, mglstPropertyDescriptors[0].Name);

            mglsSerazene.FindAll(fuk.ObsahujeText);
            PriZmeneSeznamu(new ListChangedEventArgs(ListChangedType.Reset, -1));
        }
Ejemplo n.º 3
0
        public IList <Ukaz> NajdiVNazvu(string strText)
        {
            UkazFilter fu = new UkazFilter(true, strText);

            return(FindAll(fu.ObsahujeText));
        }