我已经阅读了所有帖子,它们可能是我问题的答案,但我不太了解这个概念,所以我问我的问题,希望有一个简单的答案。我想从文本块中检索文本并将其提供给我的文本到语音代码。
需要帮助的代码是这样的:
if (DataContext == null)
{
string selectedIndex = "";
if (NavigationContext.QueryString.TryGetValue("selectedItem", out selectedIndex))
`enter code here` {
int index = int.Parse(selectedIndex);
DataContext = App.ViewModel.Items[index];
string saythis = "*here is where my question comes in - how do I get the string from the TextBlock in ControlPanel?*"
Speaker(saythis);
saythis = "here is where my question comes in - how do I get the string from the TextBlock in ControlPanel2?"
Speaker(saythis);
}
}
}
async void Speaker(string words)
{
SpeechSynthesizer synth = new SpeechSynthesizer();
await synth.SpeakTextAsync(words);
}
来自 Databound 模型的 XAML 是:
<!--TitlePanel contains the name of the application and page title-->
<StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
<TextBlock Text="Gr8Oz software" Style="{StaticResource PhoneTextNormalStyle}"/>
<TextBlock Text="{Binding Heading}" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
</StackPanel>
<!--ContentPanel contains details text. Place additional content here-->
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<TextBlock Text="{Binding Login}" TextWrapping="Wrap" Style="{StaticResource PhoneTextNormalStyle}"/>
</Grid>
<Grid x:Name="ContentPanel2" Margin="12,123,12,10" Grid.RowSpan="2">
<TextBlock Text="{Binding Password}" TextWrapping="Wrap" Style="{StaticResource PhoneTextNormalStyle}" Margin="12,10,12,0" Grid.ColumnSpan="2" Grid.RowSpan="2"/>
</Grid>