Skip to content

Commit

Permalink
表示の調整
Browse files Browse the repository at this point in the history
BlockUIContainer が入った FlowDocument 内でテキスト選択を繰り返していると「'This TextNavigator' には、スコープ テキスト要素がありません。」と言われてなぜか落ちる。ので、BlockUIContainer は InlineUIContainer に置き換え。
  • Loading branch information
Grabacr07 committed Jan 31, 2014
1 parent a9d964c commit 3cb11a8
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 19 deletions.
4 changes: 1 addition & 3 deletions Grabacr07.KanColleViewer/Views/Contents/Expeditions.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,7 @@
</Grid.ColumnDefinitions>

<TextBlock>
<Run Text="/"
FontSize="18" />
<Run Text="{Binding Id, Mode=OneWay}"
<Run Text="{Binding Id, StringFormat=/{0}, Mode=OneWay}"
FontSize="18" />
<LineBreak />
<Run Text="{Binding Name, Mode=OneWay}"
Expand Down
37 changes: 21 additions & 16 deletions Grabacr07.KanColleViewer/Views/StartContent.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@
</Border>

<Rectangle x:Name="Dummy"
Grid.Column="1" />
Grid.Column="1"
Margin="16,0,31,0" />

<Border Grid.Column="1">
<FlowDocumentScrollViewer Padding="0,-18,0,0">
Expand All @@ -242,25 +243,29 @@
<Paragraph Language="ja-jp">
<Run Text="「提督業も忙しい!」は、艦これを遊びやすくするためのツールです。" />
<LineBreak />
<Run Text="艦これは、内臓された Internet Explorer (IE) 上で動作します。通信内容の変更、サーバーに対する情報の送信、Flash 抽出、マクロ・チートの類は一切行っていません。" />
<Run Text="艦これは内臓された Internet Explorer (IE) 上で動作します。艦これのサーバーに対し一切負荷をかけないように設計・開発しており、通信内容の変更やサーバーに対する情報の送信、Flash 抽出、マクロ・チートの類は一切行っていません。" />
</Paragraph>
<Paragraph Language="ja-jp">
<Run Text="ゲームが正しく表示されない場合や、スクリプトエラーが頻発する場合は、IE のキャッシュを削除してみてください。改善しない場合は、IE の設定や、通常の IE 上で Flash が表示できるかどうか等をご確認ください。" />
</Paragraph>
<BlockUIContainer>
<metro2:CallMethodButton Content="{Binding DeleteInternetCacheButtonContent}"
MethodName="DeleteInternetCache"
IsEnabled="{Binding CanDeleteInternetCache}"
HorizontalAlignment="Left"
Padding="30,5"
SnapsToDevicePixels="True" />
</BlockUIContainer>
<BlockUIContainer>
<Rectangle Height="1"
Style="{DynamicResource SeparatorRectangleStyleKey}"
Margin="0,16,0,0"
SnapsToDevicePixels="True" />
</BlockUIContainer>
<Paragraph>
<InlineUIContainer>
<metro2:CallMethodButton Content="{Binding DeleteInternetCacheButtonContent}"
MethodName="DeleteInternetCache"
IsEnabled="{Binding CanDeleteInternetCache}"
HorizontalAlignment="Left"
Padding="30,5"
SnapsToDevicePixels="True" />
</InlineUIContainer>
<LineBreak />
<InlineUIContainer>
<Rectangle Width="{Binding ElementName=Dummy, Path=ActualWidth}"
Height="1"
Style="{DynamicResource SeparatorRectangleStyleKey}"
Margin="0,16,0,0"
SnapsToDevicePixels="True" />
</InlineUIContainer>
</Paragraph>
<Paragraph Language="ja-jp">
<Run Text="ツールは不定期に更新されています。適宜、更新の確認をお願いします。" />
<LineBreak />
Expand Down

0 comments on commit 3cb11a8

Please sign in to comment.