Skip to content
This repository has been archived by the owner on Mar 21, 2021. It is now read-only.

Commit

Permalink
Merge pull request #27 from VeronicaGeek/development
Browse files Browse the repository at this point in the history
Merged development to master for release 0.2.2
  • Loading branch information
veronicageek committed Nov 14, 2018
2 parents ca11bfd + fbe25e3 commit 7d17c27
Show file tree
Hide file tree
Showing 20 changed files with 7,060 additions and 2,193 deletions.
12 changes: 10 additions & 2 deletions Credits.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,21 @@ This is the customized message box displaying when entering the wrong credential
* Blog: [A Customizable WPF MessageBox for PowerShell](https://smsagent.wordpress.com/2017/08/24/a-customisable-wpf-messagebox-for-powershell/)


## DataGrid instead of ListViews _(Damien Van Robaeys - MVP)_
Damien helped me understand a few aspects of WPF and also provided script samples in no time.
## XAML and WPF _(Damien Van Robaeys - MVP)_
Damien helped me understand a few aspects of XAML and WPF as well as providing script samples in no time.

* Twitter: [@syst_and_deploy](https://twitter.com/syst_and_deploy)
* Website: [Syst & Deploy](http://www.systanddeploy.com/)


## MahApps Design _(Jan Karger)_
MahApps offers a modern UI for your applications, with a lot of modern design possibilities!

* Github Repo: [MahApps.Metro](https://github.com/MahApps/MahApps.Metro)
* Twitter: [@punker76](https://twitter.com/punker76)
* Website: [MahApps](https://mahapps.com/)


## GitHub Gotchas _(Bryce McDonalds)_
Being new to GitHub is not easy, and Bryce nicely spent some time answering my questions so... Merci !

Expand Down
Binary file removed Images/wip.jpg
Binary file not shown.
3,353 changes: 1,611 additions & 1,742 deletions MainWindow.xaml

Large diffs are not rendered by default.

710 changes: 262 additions & 448 deletions O365DataRetriever.ps1

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ _This file contains the PowerShell script with bindings to the xaml file_

4. Once the tool is visible, on the top right corner, enter your O365 Global Admin account + password, then click on "Connect" _(or press "Enter" on your keyboard)_

![creds_section](screenshots/creds_panel.png)
![creds_section](screenshots/NewUpdate.png)

5. Wait for a few seconds for the data to be _retrieved_ and _displayed_.

Expand Down
Binary file added assembly/ControlzEx.dll
Binary file not shown.
Binary file added assembly/MahApps.Metro.IconPacks.dll
Binary file not shown.
Binary file added assembly/MahApps.Metro.dll
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file added images/NewUpdate.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/pwd.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/user.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5,132 changes: 5,132 additions & 0 deletions resources/Icons.xaml

Large diffs are not rendered by default.

44 changes: 44 additions & 0 deletions resources/custom.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

<LinearGradientBrush x:Key="PannelBrush" EndPoint="0.5,1" StartPoint="0.5,0" Opacity="0">
<GradientStop Color="#FF06183C" Offset="0.75"/>
<GradientStop Color="#FF0D60A3"/>
</LinearGradientBrush>

<LinearGradientBrush x:Key="PartitionBrush" EndPoint="0.811,0.2" StartPoint="0.246,1.023">
<GradientStop Color="#FF7C9FC8" Offset="0"/>
<GradientStop Color="#FF7C9FC8" Offset="1"/>
</LinearGradientBrush>
<!-- This storyboard will make the image grow in 0.2 seconds -->
<Storyboard x:Key="expandStoryboard">
<DoubleAnimation Storyboard.TargetProperty="RenderTransform.ScaleX" To="1.1" Duration="0:0:0.2" />
<DoubleAnimation Storyboard.TargetProperty="RenderTransform.ScaleY" To="1.1" Duration="0:0:0.2" />
</Storyboard>
<!-- This storyboard will make the image revert to its original size -->
<Storyboard x:Key="shrinkStoryboard">
<DoubleAnimation Storyboard.TargetProperty="RenderTransform.ScaleX" To="1" Duration="0:0:0.2" />
<DoubleAnimation Storyboard.TargetProperty="RenderTransform.ScaleY" To="1" Duration="0:0:0.2" />
</Storyboard>

<!--<Style x:Key="FocusImage" TargetType ="{x:Type Image}">-->
<Style x:Key="FocusImage" TargetType ="{x:Type StackPanel}">
<Setter Property="RenderTransform">
<Setter.Value>
<ScaleTransform ScaleX="1" ScaleY="1"/>
</Setter.Value>
</Setter>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Trigger.EnterActions>
<BeginStoryboard Storyboard="{StaticResource expandStoryboard}" />
</Trigger.EnterActions>
<Trigger.ExitActions>
<BeginStoryboard Storyboard="{StaticResource shrinkStoryboard}" />
</Trigger.ExitActions>
</Trigger>
</Style.Triggers>
</Style>

</ResourceDictionary>
Binary file added screenshots/NewUpdate.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed screenshots/creds_panel.png
Binary file not shown.

0 comments on commit 7d17c27

Please sign in to comment.