or
I have many windows. I want to change in the Mainwindow from a window (window3). Make a label visible in
MainWindow on a button click in window3.
I don't want to create an instance of MainWindow, because that doesn't keep changes in the parent Mainwindow.
How can I do it, kindly?
Thanks in advanced.
<ScrollViewer> <Expander IsExpanded="False"> <telerik:RadGridView AutoGenerateColumns="False" ColumnWidth="*" AlternationCount="2" ItemsSource="{Binding Products}" /> </telerik:RadGridView> </Expander></ScrollViewer><telerik:LookupPropertyDefinition x:Name="ccLookupDef" DisplayName="Lookup Code" Binding="{Binding MyPropCode}" SelectedValuePath="Code" ItemsSource="{Binding Data.MyCodes, Source={StaticResource proxy}}" DisplayMemberPath="Description"></telerik:LookupPropertyDefinition><telerik:LookupPropertyDefinition x:Name="ccLookupDef" DisplayName="Lookup Code" SelectedValuePath="Code" ItemsSource="{Binding Data.ChargeCodes, Source={StaticResource proxy}}"> <telerik:LookupPropertyDefinition.EditorTemplate> <DataTemplate> <Grid Margin="0 3"> <Grid.ColumnDefinitions> <ColumnDefinition /> <ColumnDefinition /> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition /> </Grid.RowDefinitions> <TextBlock Grid.Row="0" Text="{Binding MyPropCode}" /> <TextBlock Grid.Row="0" Grid.Column="1" Margin="26,0,0,0" Text="{Binding Description}" /> </Grid> </DataTemplate> </telerik:LookupPropertyDefinition.EditorTemplate></telerik:LookupPropertyDefinition>