Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified WCCFNew/.vs/WCCFNew/v14/.suo
Binary file not shown.
Binary file modified WCCFNew/WCCFNew.v12.suo
Binary file not shown.
2 changes: 1 addition & 1 deletion WCCFNew/WCCFNew/App.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WCCFNew"
StartupUri="login.xaml">
StartupUri="NavWin.xaml">
<Application.Resources>
<!--Header Boarder Style-->
<Style x:Key="headerBoarderStyle" TargetType="{x:Type Border}">
Expand Down
29 changes: 15 additions & 14 deletions WCCFNew/WCCFNew/facebook.xaml → WCCFNew/WCCFNew/FacebookPG.xaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<Window x:Class="WCCFNew.facebook"
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:WCCFNew"
mc:Ignorable="d"
Title="Facebook Event Manager" Height="500" Width="500" WindowStartupLocation="CenterScreen" Icon="Media\Icon.png">
<Page x:Class="WCCFNew.FacebookPG"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:WCCFNew"
mc:Ignorable="d"
d:DesignHeight="500" d:DesignWidth="500"
Title="Facebook Message Manager">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="50"/>
Expand Down Expand Up @@ -34,7 +35,7 @@
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
</Grid.ColumnDefinitions>
<CheckBox x:Name="lblInstructionsFB" Grid.Column="0" Content="Foundation Group" FontSize="15" HorizontalAlignment="Center" Style="{StaticResource checkBoxNotInHeader}" />
<CheckBox x:Name="cbWall" Grid.Column="1" Content="Facebook Wall" HorizontalAlignment="Center" FontSize="15" Style="{StaticResource checkBoxNotInHeader}" />
<CheckBox x:Name="cbPage" Grid.Column="2" Content="Facebook Page" FontSize="15" HorizontalAlignment="Center" Style="{StaticResource checkBoxNotInHeader}" />
Expand All @@ -49,7 +50,7 @@
<ColumnDefinition Width=".5*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Label x:Name="FBEnterMSGLBL" Grid.Column="1" Content="Enter Message Here: " VerticalAlignment="Top" HorizontalAlignment="Center" FontWeight="Bold" FontSize="13.333"/>
<Label x:Name="FBEnterMSGLBL" Grid.Column="1" Content="Enter Message Here: " VerticalAlignment="Top" HorizontalAlignment="Center" FontWeight="Bold" FontSize="13.333" Foreground="#FF333333"/>
<TextBox x:Name="txtMessageFB" Grid.Column="1" Grid.RowSpan="2" Style="{StaticResource textBox}" Margin="10,28,10,10"/>
<Button x:Name="btnLoginFB" Grid.Row="0" Content="Login To Facebook" Style="{StaticResource buttonStyle}" Margin="10,10,10,10" FontSize="14"/>
<Button x:Name="btnLogoutFB" Grid.Row="1" Content="Logout of Facebook" Style="{StaticResource buttonStyle}" Margin="10,10,10,10" FontSize="14"/>
Expand All @@ -65,12 +66,12 @@
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Button x:Name="btnClearFB" Grid.Column="0" Content="Clear" Style="{StaticResource buttonStyle}" FontSize="16" Click="btnClearFB_Click"/>
</Grid.ColumnDefinitions>
<Button x:Name="btnClearFB" Grid.Column="0" Content="Clear" Style="{StaticResource buttonStyle}" FontSize="16"/>
<Button x:Name="btnSubmitFB" Grid.Column="1" Content="Submit" Style="{StaticResource buttonStyle}" FontSize="16"/>
</Grid>


</Grid>
</Grid>
</Window>
</Page>
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,19 @@
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace WCCFNew
{
/// <summary>
/// Interaction logic for facebook.xaml
/// Interaction logic for FacebookPG.xaml
/// </summary>
public partial class facebook : Window
public partial class FacebookPG : Page
{
public facebook()
public FacebookPG()
{
InitializeComponent();
}

private void btnClearFB_Click(object sender, RoutedEventArgs e)
{
txtMessageFB.Clear();
}
}
}
14 changes: 14 additions & 0 deletions WCCFNew/WCCFNew/GMailPG.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<Page x:Class="WCCFNew.GMailPG"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:WCCFNew"
mc:Ignorable="d"
d:DesignHeight="500" d:DesignWidth="500"
Title="GMailPG">

<Grid>

</Grid>
</Page>
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,17 @@
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace WCCFNew
{
/// <summary>
/// Interaction logic for GMail.xaml
/// Interaction logic for GMailPG.xaml
/// </summary>
public partial class GMail : Window
public partial class GMailPG : Page
{
public GMail()
public GMailPG()
{
InitializeComponent();
}
Expand Down
23 changes: 14 additions & 9 deletions WCCFNew/WCCFNew/login.xaml → WCCFNew/WCCFNew/LoginPG.xaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
<Window x:Class="WCCFNew.login"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Login Manager" Height="500" Width="500">
<Page x:Class="WCCFNew.LoginPG"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:WCCFNew"
mc:Ignorable="d"
d:DesignHeight="500" d:DesignWidth="500"
Title="Login Manager">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="50"/>
Expand Down Expand Up @@ -29,10 +34,10 @@
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Label Grid.Row="0" HorizontalAlignment="Center" VerticalAlignment="Center" Content="Enter Passwords" FontSize="20" FontWeight="Bold"/>
<Label Grid.Row="1" HorizontalAlignment="Left" VerticalAlignment="Center" Content="E-Mail Password:" FontSize="20" FontWeight="Bold"/>
<Label Grid.Row="0" HorizontalAlignment="Center" VerticalAlignment="Center" Content="Enter Passwords" FontSize="20" FontWeight="Bold" Foreground="#FF333333"/>
<Label Grid.Row="1" HorizontalAlignment="Left" VerticalAlignment="Center" Content="E-Mail Password:" FontSize="20" FontWeight="Bold" Foreground="#FF333333"/>
<PasswordBox Grid.Row="1" Style="{StaticResource passwordBox}"/>
<Label Grid.Row="2" HorizontalAlignment="Left" VerticalAlignment="Center" Content="Twitter Password" FontSize="20" FontWeight="Bold"/>
<Label Grid.Row="2" HorizontalAlignment="Left" VerticalAlignment="Center" Content="Twitter Password" FontSize="20" FontWeight="Bold" Foreground="#FF333333"/>
<PasswordBox Grid.Row="2" Style="{StaticResource passwordBox}"/>
</Grid>
</Grid>
Expand All @@ -42,7 +47,7 @@
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>

<Button Grid.Column="0" Content="Main Menu" Style="{StaticResource buttonStyle}" FontSize="16" FontWeight="Bold" Click="Button_Click"/>


Expand All @@ -58,4 +63,4 @@
</Grid>

</Grid>
</Window>
</Page>
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,25 @@
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace WCCFNew
{
/// <summary>
/// Interaction logic for login.xaml
/// Interaction logic for LoginPG.xaml
/// </summary>
public partial class login : Window
public partial class LoginPG : Page
{
public login()
public LoginPG()
{
InitializeComponent();
}

private void Button_Click(object sender, RoutedEventArgs e)
{
mainMenu mm = new mainMenu();
mm.Show();
MainMenuPG mainMenu = new MainMenuPG();
this.NavigationService.Navigate(mainMenu);
}
}
}
71 changes: 71 additions & 0 deletions WCCFNew/WCCFNew/MainMenuPG.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<Page x:Class="WCCFNew.MainMenuPG"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:WCCFNew"
mc:Ignorable="d"
d:DesignHeight="500" d:DesignWidth="500"
Title="MainMenuPG">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="50"/>
<RowDefinition Height="140"/>
<RowDefinition Height="*"/>
<RowDefinition Height="50"/>
</Grid.RowDefinitions>

<Border Grid.Row="0" Style="{StaticResource headerBoarderStyle}"/>
<Border Grid.Row="3" Style="{StaticResource footerBoarderStyle}"/>

<Label Grid.Row="0" Content="Main Menu" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="28" FontWeight="Bold" Foreground="#FFC1C1C1"/>
<Image Grid.Row="1" Source="Media/logo.png"/>

<Grid Grid.Row="2">
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>

<Grid Grid.Row="0">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="6*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>

<Button x:Name="EMailBTN" Grid.ColumnSpan="2" Content="E-Mail Page" FontSize="30" FontWeight="Bold" Style="{StaticResource buttonStyle}" Click="EMailBTN_Click"/>
<Image Grid.Column="1" Source="Media/emailLogo.png"/>
</Grid>
<Grid Grid.Row="1">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="6*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>

<Button x:Name="FBBTN" Grid.ColumnSpan="2" Content="Facebook Page" FontSize="30" FontWeight="Bold" Style="{StaticResource buttonStyle}" Click="FBBTN_Click"/>
<Image Grid.Column="1" Source="Media/facebookLogo.png"/>
</Grid>
<Grid Grid.Row="2">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="6*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>

<Button x:Name="QuickPostBTN" Grid.ColumnSpan="2" Content="Quick Post Page" FontSize="30" FontWeight="Bold" Style="{StaticResource buttonStyle}" Click="QuickPostBTN_Click"/>
<Image Grid.Column="1"/>
</Grid>
<Grid Grid.Row="3">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="6*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>

<Button x:Name="TwitterBTN" Grid.ColumnSpan="2" Content="Twitter Page" FontSize="30" FontWeight="Bold" Style="{StaticResource buttonStyle}" Click="TwitterBTN_Click"/>
<Image Grid.Column="1" Source="Media/twitterLogo.png"/>
</Grid>

</Grid>
</Grid>
</Page>
52 changes: 52 additions & 0 deletions WCCFNew/WCCFNew/MainMenuPG.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace WCCFNew
{
/// <summary>
/// Interaction logic for MainMenuPG.xaml
/// </summary>
public partial class MainMenuPG : Page
{
public MainMenuPG()
{
InitializeComponent();
}

private void EMailBTN_Click(object sender, RoutedEventArgs e)
{
GMailPG gm = new GMailPG();
this.NavigationService.Navigate(gm);
}

private void FBBTN_Click(object sender, RoutedEventArgs e)
{
FacebookPG fb = new FacebookPG();
this.NavigationService.Navigate(fb);
}

private void QuickPostBTN_Click(object sender, RoutedEventArgs e)
{
QuickPost myqp = new QuickPost();
this.NavigationService.Navigate(myqp);
}

private void TwitterBTN_Click(object sender, RoutedEventArgs e)
{
TwitterPG tp = new TwitterPG();
this.NavigationService.Navigate(tp);
}
}
}
10 changes: 4 additions & 6 deletions WCCFNew/WCCFNew/GMail.xaml → WCCFNew/WCCFNew/NavWin.xaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
<Window x:Class="WCCFNew.GMail"
<NavigationWindow x:Class="WCCFNew.NavWin"
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:WCCFNew"
mc:Ignorable="d"
Title="E-Mail Event Manager" Height="500" Width="500" WindowStartupLocation="CenterScreen" Icon="Media\logo.png">
<Grid>

</Grid>
</Window>
Title="Media Message Manager" Height="500" Width="500" WindowStartupLocation="CenterScreen" Icon="Media/Icon.png" Source="LoginPG.xaml">

</NavigationWindow>
28 changes: 28 additions & 0 deletions WCCFNew/WCCFNew/NavWin.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using System.Windows.Navigation;

namespace WCCFNew
{
/// <summary>
/// Interaction logic for NavWin.xaml
/// </summary>
public partial class NavWin : NavigationWindow
{
public NavWin()
{
InitializeComponent();
}
}
}
14 changes: 14 additions & 0 deletions WCCFNew/WCCFNew/TwitterPG.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<Page x:Class="WCCFNew.TwitterPG"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:WCCFNew"
mc:Ignorable="d"
d:DesignHeight="500" d:DesignWidth="500"
Title="TwitterPG">

<Grid>

</Grid>
</Page>
Loading