Question: I have an ironpython script which opens an xaml file containing 2 tabs . Inside of the first tab there is a listbox and there

I have an ironpython script which opens an xaml file containing 2 tabs. Inside of the first tab there is a listbox and there is a button called "Modify" underneath. How can I make it so that I can open another xaml file which contains some information about the class I selected in the listbox (Let's assume it has the class properties: Views, Options, Materials, Objects, Name). To give some more context, I will provide some code I made in IronPython to load the xaml file. class ViewModel(my_WPF):
context_mode = 'show'
view_mode = 'singular'
context_transp =0
context_color = Color(255,255,255)
warning_color = Color(255,0,0)
count_views_total =1
count_view_current =1
def __init__(self):
path_xaml_file = xaml_path
wpf.LoadComponent(self, path_xaml_file)Is this possible with XAML and IronPython? If you can give it in either ironpython or C# its fine because I can easily convert these two languages.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!