-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHelpWindow.xaml
More file actions
62 lines (47 loc) · 4.61 KB
/
HelpWindow.xaml
File metadata and controls
62 lines (47 loc) · 4.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<Window x:Class="AcctISGenerator.HelpWindow"
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"
mc:Ignorable="d"
Title="HelpWindow" Height="450" Width="450">
<Grid x:Name="MainGrid">
<ScrollViewer VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Disabled"> <TextBlock TextWrapping="Wrap" TextAlignment="Left" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="5" >
<Bold FontSize="30" TextDecorations="Underline">About This Program</Bold>
<LineBreak/>This program was made to help practice knowledge on some formulas for the income statement.
The focus is mainly the portions of the income statement that come above Gross Profit.
<LineBreak/><LineBreak/>In particular, this is based on a <Italic>merchandising business'</Italic> income statement.
This means that there will be a Cost of Goods Sold calculation rather than what is seen in manufacturing and service businesses'
income statements.
<LineBreak/><LineBreak/>Source code can be found on the 
<Hyperlink NavigateUri="https://github.com/Chenneth/AccountingtIncomeStatementPracticeProblemGenerator"
RequestNavigate="Hyperlink_OnRequestNavigate">
Github
</Hyperlink>.<LineBreak/><LineBreak/><Bold FontSize="30" TextDecorations="Underline">How To Use</Bold>
<LineBreak/>Pressing the <Italic>Start Button</Italic> on the main menu will set up the questions.
<LineBreak/><LineBreak/>The left half of the window will have the account information needed to solve the questions
on the right half. To answer a question, type in the given submission box and then press
 <Italic>Enter</Italic> or press the <Italic>Submit Button</Italic> 
to the right of the submission box.
<LineBreak/><LineBreak/>Valid submissions are numbers only. Negative numbers can be entered either with a '-' sign, or parentheses.
If a non-number is entered, a message will appear saying "Input is not a number." below the according submission box.
Commas are not needed to separate numbers, but periods are not accepted. No answer will be a decimal.
<LineBreak/><LineBreak/>If the answer is incorrect, the submission box will flash red. There are no limits on attempts.
<LineBreak/><LineBreak/>Additionally, there are three buttons besides the Submit Buttons: Show Answers, Help, and Back to Main Menu.
<LineBreak/><LineBreak/>The <Italic>Show Answers Button</Italic> will place all the correct answers in green in the submission box
for each question that did not already have a correct answer submitted.
<LineBreak/><LineBreak/>The <Italic>Help Button</Italic>  displays this window.
<LineBreak/><LineBreak/>The <Italic>Back to Main Menu Button</Italic> returns the program to the initial screen which displayed a Start, Help, and Exit button.
<LineBreak/><LineBreak/>Both the <Italic>Show Answers Button</Italic> and <Italic>Back to Main Menu Button</Italic> 
ask for confirmation before continuing.
<LineBreak/><LineBreak/><Bold FontSize="30" TextDecorations="Underline">Formulas</Bold>
<LineBreak/>The following are the formulas used to calculate various values.
<LineBreak/><LineBreak/>Cost Of Delivered Merchandise = Purchases + Transportation In
<LineBreak/><LineBreak/>Net Purchases = Cost Of DeliveredMerchandise - Purchases Returns And Allowances - Purchases Discounts
<LineBreak/><LineBreak/>Net Sales = Sales - Sales Discounts - Sales Returns And Allowances
<LineBreak/><LineBreak/>Cost Of Merchandise Available For Sale = Beginning Inventory + Net Purchases
<LineBreak/><LineBreak/>Cost Of Merchandise Sold = Cost Of Merchandise Available For Sale - Ending Inventory
<LineBreak/><LineBreak/>Gross Profit = Net Sales - Cost Of Merchandise Sold
</TextBlock></ScrollViewer>
</Grid>
</Window>