Skip to content

Commit

Permalink
Closes #1
Browse files Browse the repository at this point in the history
  • Loading branch information
andreashuber-lawo committed Oct 30, 2015
1 parent 9b00258 commit 15ff7bc
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
17 changes: 13 additions & 4 deletions Lawo.GlowAnalyzerProxy.Main/ConnectionStatusUserControl.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,21 @@
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<!-- #region PrimitivePropertyBinding -->
<Label Grid.Row="0" Grid.Column="0">Connection Count:</Label>
<TextBox Grid.Row="0" Grid.Column="2" IsReadOnly="True" Text="{Binding ConnectionCount, Mode=OneWay}"/>
<Label Grid.Row="0" Grid.Column="0">Connection Attempts:</Label>
<TextBox
Grid.Row="0" Grid.Column="2" IsReadOnly="True"
ToolTip="The number of connection attempts made since the proxy was started."
Text="{Binding ConnectionCount, Mode=OneWay}"/>
<Label Grid.Row="2" Grid.Column="0">Bytes Received:</Label>
<TextBox Grid.Row="2" Grid.Column="2" IsReadOnly="True" Text="{Binding BytesReceived, Mode=OneWay}"/>
<TextBox
Grid.Row="2" Grid.Column="2" IsReadOnly="True"
ToolTip="The number of bytes the proxy has received through the current connection."
Text="{Binding BytesReceived, Mode=OneWay}"/>
<Label Grid.Row="4" Grid.Column="0">Seconds Since Last Byte:</Label>
<TextBox Grid.Row="4" Grid.Column="2" IsReadOnly="True" Text="{Binding SecondsSinceLastReceived, Mode=OneWay}"/>
<TextBox
Grid.Row="4" Grid.Column="2" IsReadOnly="True"
ToolTip="The number of seconds that have passed since the proxy has received the last byte."
Text="{Binding SecondsSinceLastReceived, Mode=OneWay}"/>
<!-- #endregion -->
</Grid>
</GroupBox>
Expand Down
4 changes: 2 additions & 2 deletions Lawo.GlowAnalyzerProxy.Main/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,12 @@
<Label Grid.Row="4" Grid.Column="0">Provider Port:</Label>
<TextBox
Grid.Row="4" Grid.Column="2" Grid.ColumnSpan="2" IsEnabled="{Binding CanEditSettings}"
ToolTip="The port on which the Ember+ provider listens for consumer connection requests."
ToolTip="The port on which the Ember+ provider listens for connection requests."
ToolTipService.ShowOnDisabled="True" Text="{Binding ProviderPort, ValidatesOnDataErrors=True}"/>
<Label Grid.Row="6" Grid.Column="0">Log Folder:</Label>
<TextBox
Grid.Row="6" Grid.Column="2"
ToolTip="The folder into which the log files are written.&#x0d;&#x0a;A new log file is created whenever the consumer successfully establishes a TCP/IP connection with this proxy."
ToolTip="The folder into which the log files are written.&#x0d;&#x0a;A new log file is created whenever a consumer attempts to establish a TCP/IP connection with this proxy."
Text="{Binding LogFolder, ValidatesOnDataErrors=True}"/>
<Button
Grid.Row="6" Grid.Column="3" Style="{StaticResource TrippleDotButtonStyle}"
Expand Down

0 comments on commit 15ff7bc

Please sign in to comment.