OutlookPane.xaml
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. <Page xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml' >
  2. <Page.Resources>
  3. <LinearGradientBrush x:Key="FolderBrush" StartPoint="0, 0" EndPoint="1,0">
  4. <GradientStop Color="#d6e8ff" Offset="0"/>
  5. <GradientStop Color="#e3efff" Offset="0.5"/>
  6. <GradientStop Color="#d6e8ff" Offset="1"/>
  7. </LinearGradientBrush>
  8. </Page.Resources>
  9. <Border VerticalAlignment='Center' HorizontalAlignment='Center' Padding="4">
  10. <Border.Background>
  11. <LinearGradientBrush StartPoint="0, 0" EndPoint="0,1">
  12. <GradientStop Color="#bedafe" Offset="0"/>
  13. <GradientStop Color="#6591cd" Offset="1"/>
  14. </LinearGradientBrush>
  15. </Border.Background>
  16. <Border BorderBrush='#6593cf' BorderThickness='1' VerticalAlignment='Center' HorizontalAlignment='Center'>
  17. <StackPanel Background="White">
  18. <Border Padding = '5, 1, 6, 1' BorderBrush='White' BorderThickness='1, 1, 0, 0'>
  19. <Border.Background>
  20. <LinearGradientBrush StartPoint="0, 0" EndPoint="0,1">
  21. <GradientStop Color="#e3efff" Offset="0"/>
  22. <GradientStop Color="#afd2ff" Offset="1"/>
  23. </LinearGradientBrush>
  24. </Border.Background>
  25. <TextBlock FontFamily="Arial" FontSize="20" FontWeight='Bold' Foreground='#15428b'>Mail</TextBlock>
  26. </Border>
  27. <Rectangle Fill="#6593cf" Height="1"/>
  28. <Border Padding = '5, 3, 6, 3' BorderBrush='White' BorderThickness='1, 1, 0, 0' Background="{StaticResource FolderBrush}">
  29. <TextBlock FontWeight='Bold' Foreground='#15428b'>Favorite Folders</TextBlock>
  30. </Border>
  31. <Rectangle Fill="#add1ff" Height="1"/>
  32. <Border Padding="20, 0, 40, 2">
  33. <StackPanel Margin='3'>
  34. <TextBlock HorizontalAlignment="Left" Cursor="Hand">Drafts</TextBlock>
  35. <TextBlock HorizontalAlignment="Left"  Cursor="Hand">
  36. <Bold>Inbox</Bold>
  37. <Run Foreground='Blue'>(490)</Run>
  38. </TextBlock>
  39. <TextBlock HorizontalAlignment="Left" Cursor="Hand">Sent items</TextBlock>
  40. <TextBlock HorizontalAlignment="Left" Cursor="Hand">
  41. <Italic>Large Mail</Italic>
  42. </TextBlock>
  43. <TextBlock HorizontalAlignment="Left" Cursor="Hand"> 
  44. <Bold>Junk E-mail</Bold>
  45. <Run Foreground='Green'>[490]</Run>
  46. </TextBlock>
  47. </StackPanel>
  48. </Border>
  49. <Rectangle Fill="#6593cf" Height="1"/>
  50. <Border Padding = '5, 3, 6, 3' BorderBrush='White' BorderThickness='1, 1, 0, 0' Background="{StaticResource FolderBrush}">
  51. <TextBlock FontWeight='Bold' Foreground='#15428b'>Current View</TextBlock>
  52. </Border>
  53. <Rectangle Fill="#add1ff" Height="1"/>
  54. <Border Padding="2, 0, 0, 2">
  55. <StackPanel Margin='3'>
  56. <RadioButton Margin="0, 1, 0, 1" IsChecked="True" Content=" Icons"/>
  57. <RadioButton Margin="0, 1, 0, 1" Content=" Notes List"/>
  58. <RadioButton Margin="0, 1, 0, 1" Content=" Last Seven Days"/>
  59. <RadioButton Margin="0, 1, 0, 1" Content=" By Category"/>
  60. </StackPanel>
  61. </Border>
  62. </StackPanel>
  63. </Border>
  64. </Border>
  65. </Page>