Exemplo n.º 1
0
        //--------------------------------------------------------------------------------------------------------------------------------------------------------------
        private void Custom_Select(object sender, RoutedEventArgs e)
        {
            try
            {
                Selection selection    = uidoc.Selection;
                var       element_list = selection.PickObjects(ObjectType.Element).Select(x => doc.GetElement(x)).ToList();

                my_category         = new ObservableCollection <data_category>();
                my_family           = new ObservableCollection <data_family>();
                my_type             = new ObservableCollection <data_type>();
                my_parameters       = new ObservableCollection <data_parameters>();
                my_parameters_value = new ObservableCollection <data_parameters_value>();

                F_GetCategory.distint_category(doc, my_category, thong_tin_category, element_list);
                F_GetFamily.distint_family(my_category, thong_tin_category, my_family, thong_tin_family);
                F_GetElementType.distint_type(my_family, thong_tin_family, my_type, thong_tin_type);
                F_GetParameters.distint_parameters(doc, my_type, thong_tin_type, my_parameters, thong_tin_parameter);
                F_GetParametersValue.distint_parameter_values(doc, my_parameters, thong_tin_parameter, my_parameters_value, gia_tri_parameter);
                All_Check();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }
Exemplo n.º 2
0
        //----------------------------------------------------------
        public void Function_Dau_Vao()
        {
            try
            {
                my_category         = new ObservableCollection <data_category>();
                my_family           = new ObservableCollection <data_family>();
                my_type             = new ObservableCollection <data_type>();
                my_parameters       = new ObservableCollection <data_parameters>();
                my_parameters_value = new ObservableCollection <data_parameters_value>();

                F_GetCategory.distint_category(doc, my_category, thong_tin_category, new FilteredElementCollector(doc, doc.ActiveView.Id).WhereElementIsNotElementType().ToList());
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }
Exemplo n.º 3
0
        //--------------------------------------------------------------------------------------------------------------------------------------------------------------
        private void Refesh(object sender, RoutedEventArgs e)
        {
            try
            {
                my_category         = new ObservableCollection <data_category>();
                my_family           = new ObservableCollection <data_family>();
                my_type             = new ObservableCollection <data_type>();
                my_parameters       = new ObservableCollection <data_parameters>();
                my_parameters_value = new ObservableCollection <data_parameters_value>();

                F_GetCategory.distint_category(doc, my_category, thong_tin_category, new FilteredElementCollector(doc, doc.ActiveView.Id).WhereElementIsNotElementType().ToList());
                F_GetFamily.distint_family(my_category, thong_tin_category, my_family, thong_tin_family);
                F_GetElementType.distint_type(my_family, thong_tin_family, my_type, thong_tin_type);
                F_GetParameters.distint_parameters(doc, my_type, thong_tin_type, my_parameters, thong_tin_parameter);
                F_GetParametersValue.distint_parameter_values(doc, my_parameters, thong_tin_parameter, my_parameters_value, gia_tri_parameter);
                All_Check();

                e_refresh.Raise();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }