у меня два окна;главное окно и подокно.Мне нужно обновить текст в текстовом блоке, который находится в подокне.Но текст не обновляется, когда я помещаю этот текстовый блок в главное окно, он обновляет текст.
Я попробовал следующий код:
Главное окно QPlayer.XAML (Активное окно)
<Window x:Class="AlQuran.Views.QPlayer"
xmlns:ViewModel="clr-namespace:AlQuran.ViewModel"
Width="300" Height="306" WindowStyle="None"
ResizeMode="NoResize" BorderThickness="0" Foreground="White" AllowsTransparency="True" MouseDown="Window_MouseDown" SnapsToDevicePixels="True" Loaded="Window_Loaded">
<Window.Background>
<ImageBrush ImageSource="../Resources/AlQuran_Window.png"/>
</Window.Background>
<Window.DataContext>
<ViewModel:QuranViewModel/>
</Window.DataContext>
<Grid >
<Image x:Name="BtnPlay" Grid.Column="0" MouseDown="BtnPlay_MouseDown" HorizontalAlignment="Center" VerticalAlignment="Center" Width="79" Height="79">
<Image.Style>
<Style TargetType="{x:Type Image}">
<Setter Property="Source" Value="../Resources/BtnPlay.png"/>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Source" Value="../Resources/BtnPlay_Over.png"/>
</Trigger>
</Style.Triggers>
</Style>
</Image.Style>
<Image.InputBindings>
<MouseBinding Gesture="LeftClick" Command="{Binding Play_Btn, Mode=OneTime}" />
</Image.InputBindings>
</Image>
<TextBlock Grid.Column="1" Grid.Row="6" Text="{Binding TxtAyah, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" VerticalAlignment="Top" Height="47" Background="#FF38ECEC" FontSize="16" />
Информационное окно AyahWindow.xaml (Неактивное окно)
<Window x:Class="AlQuran.Views.AyahWindow"
xmlns:local="clr-namespace:AlQuran"
xmlns:ViewModel="clr-namespace:AlQuran.ViewModel"
Width="900" Height="630" WindowStartupLocation="CenterScreen" WindowStyle="None"
ResizeMode="NoResize" BorderThickness="0" Foreground="White" Opacity=".94" AllowsTransparency="True" MouseDown="Window_MouseDown" >
<Window.Resources>
<ViewModel:QuranViewModel x:Key="QViewModel"/>
</Window.Resources>
<Window.DataContext>
<ViewModel:QuranViewModel />
</Window.DataContext>
<Grid >
<TextBlock Grid.Column="1" Grid.Row="1" ScrollViewer.CanContentScroll="True"
Text="{Binding TxtAyah, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
x:Name="AyahLine" TextWrapping="Wrap" Background="#FFF51E1E"
FontFamily="Futura Md BT" FontSize="36" TextAlignment="Right"/>
</Grid>
InfoWindow AyahWindow.XAML.CS (Неактивное)
public InfoWindow()
{
InitializeComponent();
}
public string txt;
public InfoWindow(string txt)
{
InitializeComponent();
TxtToShow.Text = txt;
}
Класс ViewModel QuranViewModel.CS
namespace AlQuran.ViewModel
{
public class QuranViewModel : INotifyPropertyChanged
{
public ICommand Play_Btn { get; set; }
public QuranViewModel()
{
Play_Btn = new RelayCommand(PlayMethod, CanExecuteMyMethod);
}
private string _txtAyah;
public string TxtAyah
{
get { return _txtAyah; }
set { _txtAyah = value; OnPropertyChanged("TxtAyah"); }
}
private void PlayMethod(object parameter)
{
TxtAyah =new Random().Next(5,999999).ToString() ;
AyahWindow aw = new AyahWindow(TxtAyah);
aw.txt = TxtAyah;
}
}
}
Пожалуйста, помогите, я действительно застрял в этом месте.
и вот изображение моего проекта, чтобы лучше понять введите описание изображения здесь