Example #1
0
        private void btn_browse_styleStructureFile_Click(object sender, RoutedEventArgs e)
        {
            try
            {
                OpenFileDialog openFileDialog = new OpenFileDialog();
                openFileDialog.Filter = "Style Structure Files (*.sst; *.sst)|*.sst;";
                if (openFileDialog.ShowDialog() == true)
                {
                    tBox_stylemapperFile.Text = openFileDialog.FileName;

                    //load data on the file ot the listview.
                    GH.getStyleStructureFileDetails(tBox_stylemapperFile.Text);
                }


            }
            catch (System.Exception ex)
            { }
        }