Skip to content

Instantly share code, notes, and snippets.

View shawnoster's full-sized avatar

Shawn Oster shawnoster

View GitHub Profile
@timheuer
timheuer / readmore.xaml
Created December 21, 2012 21:44
hack for a read more block
<RichTextBlock>
<Paragraph>
<InlineUIContainer>
<StackPanel>
<TextBlock Text="Some text here" />
<HyperlinkButton x:Name="ReadMoreLink" Content="READ MORE" Click="HyperlinkButton_Click_1" />
<TextBlock x:Name="HiddenText" Text="Some other text" Visibility="Collapsed" />
</StackPanel>
</InlineUIContainer>
</Paragraph>