~halega/+junk/sharpdevelop

« back to all changes in this revision

Viewing changes to src/AddIns/DisplayBindings/WpfDesign/WpfDesign.AddIn/Src/WpfDocumentError.xaml

  • Committer: sk
  • Date: 2011-09-10 05:17:57 UTC
  • Revision ID: halega@halega.com-20110910051757-qfouz1llya9m6boy
4.1.0.7915 Release Candidate 1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<UserControl
 
3
        x:Class="ICSharpCode.WpfDesign.AddIn.WpfDocumentError" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 
4
        Background="#888">
 
5
        <Border
 
6
                Background="#DDD"
 
7
                BorderBrush="#999"
 
8
                BorderThickness="2"
 
9
                Height="150"
 
10
                Width="500">
 
11
                <Border.Effect>
 
12
                        <DropShadowEffect
 
13
                                BlurRadius="15"
 
14
                                Color="#777"
 
15
                                ShadowDepth="2" />
 
16
                </Border.Effect>
 
17
                <Grid>
 
18
                        <Image
 
19
                                Name="ErrorIcon"
 
20
                                Width="32"
 
21
                                Height="32"
 
22
                                Margin="10,10,0,0"
 
23
                                Source="../Images/Icons.32x32.Error.png"
 
24
                                HorizontalAlignment="Left"
 
25
                                VerticalAlignment="Top" />
 
26
                        <TextBlock
 
27
                                Text="Problem Loading"
 
28
                                Foreground="#333"
 
29
                                Margin="50,10,0,0"
 
30
                                FontSize="16" />
 
31
                        <Line
 
32
                                X1="50"
 
33
                                X2="450"
 
34
                                Y1="40"
 
35
                                Y2="40"
 
36
                                Stroke="#444"
 
37
                                StrokeThickness="0.5" />
 
38
                        <TextBlock
 
39
                                TextWrapping="Wrap"
 
40
                                Text="The document contains errors which should be fixed so that the designer can load. Switch to XAML Tab to fix the errors."
 
41
                                Margin="50,50,20,0"
 
42
                                VerticalAlignment="Top"
 
43
                                FontSize="14"
 
44
                                Foreground="#333" />
 
45
                        <TextBlock
 
46
                                Margin="50,0,0,20"
 
47
                                HorizontalAlignment="Left"
 
48
                                VerticalAlignment="Bottom">
 
49
                                <Hyperlink
 
50
                                        Foreground="Black"
 
51
                                        Click="ViewXaml">View XAML</Hyperlink>
 
52
                        </TextBlock>
 
53
                </Grid>
 
54
        </Border>
 
55
</UserControl>
 
 
b'\\ No newline at end of file'