123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <wpf:ThemableWindow x:Class="PRSDesktop.EmailInterfaceForm"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:PRSDesktop"
- xmlns:wpf="clr-namespace:InABox.Wpf;assembly=InABox.Wpf"
- xmlns:dynamicgrid="clr-namespace:InABox.DynamicGrid;assembly=InABox.Wpf"
- mc:Ignorable="d"
- Title="Email Activity" Height="900" Width="1600" Loaded="Window_Loaded" Background="WhiteSmoke"
- WindowStartupLocation="CenterScreen">
- <Grid Margin="5">
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto" />
- <RowDefinition Height=".4*" />
- <RowDefinition Height=".6*" />
- </Grid.RowDefinitions>
- <Border CornerRadius="5,5,0,0" Grid.Row="0" BorderBrush="Gray" BorderThickness="0.75" Background="Gainsboro"
- Padding="5">
- <DockPanel>
- <Label DockPanel.Dock="Left" Content="Folder" />
- <ComboBox x:Name="Folder" DockPanel.Dock="Left" Width="100" Margin="5,0,0,0" SelectedIndex="0"
- SelectionChanged="Folder_SelectionChanged" VerticalContentAlignment="Center">
- <ComboBoxItem Content="Inbox" />
- <ComboBoxItem Content="Sent Items" />
- </ComboBox>
- <ComboBox x:Name="Items" DockPanel.Dock="Right" Width="100" Margin="5,0,0,0" SelectedIndex="0"
- SelectionChanged="Items_SelectionChanged" VerticalContentAlignment="Center">
- <ComboBoxItem Content="100" />
- <ComboBoxItem Content="500" />
- <ComboBoxItem Content="1000" />
- <ComboBoxItem Content="All Items" />
- </ComboBox>
- <Label DockPanel.Dock="Right" Content="Items" Margin="5,0,0,0" />
- <!--<Label DockPanel.Dock="Left" Content="Activity" Margin="5,0,0,0"/>
- <ComboBox x:Name="Activities" DockPanel.Dock="Left" Width="250" Margin="5,0,0,0" VerticalContentAlignment="Center" SelectedValuePath="Key" DisplayMemberPath="Value" SelectionChanged="Activities_SelectionChanged"/>-->
- <Label DockPanel.Dock="Left" Margin="5,0,0,0" Content="" x:Name="Employee" HorizontalAlignment="Center"
- VerticalContentAlignment="Center" />
- </DockPanel>
- </Border>
- <local:EmailInterfaceGrid x:Name="Emails" Grid.Row="1" Margin="0,5,0,0" RootFolder="Inbox" Folder=""
- Count="100" />
- <dynamicgrid:RichTextEditor x:Name="Preview" Grid.Row="2" Margin="0,5,0,0" Color="White" />
- </Grid>
- </wpf:ThemableWindow>
|