Compare commits
5 Commits
SelectedSt
...
Beta-3.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d8ca0f01ca | ||
|
|
edddd01a21 | ||
|
|
a5ef763617 | ||
|
|
ab758cd85f | ||
|
|
ed3a2bb5b9 |
14
Readme.md
14
Readme.md
@@ -1,9 +1,23 @@
|
||||
# Twitch Notify
|
||||
## Not affiliated with Twitch or Amazon
|
||||
|
||||
Please note that currently this is a BETA as such it does not add it's self to windows start up if you wish to add this to start up for now you can just create a shortcut to the `Twitch Notify.exe` in the directory `C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup`,
|
||||
|
||||
This will be fixed when this project moves out of Beta only.
|
||||
|
||||
## Installation
|
||||
Twitch Notify Requires [.NET 6 Desktop Runtime](https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-desktop-6.0.13-windows-x64-installer).
|
||||
|
||||
## How to use
|
||||
**How to Exit:**
|
||||
|
||||
To exit you will have a Notification Icon / Tray icon where you can quit the application.
|
||||
|
||||

|
||||
|
||||
**What it looks like:**
|
||||
|
||||

|
||||
|
||||
## Development
|
||||
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
Grid.Column="1"
|
||||
Grid.RowSpan="1" Grid.Row="3"
|
||||
CanUserResizeColumns="False"
|
||||
x:Name="dgrdIgnore" ItemsSource="{Binding StreamersToIgnore}" SelectionChanged="dgrdIgnore_SelectionChanged" AutoGenerateColumns="False" CanUserAddRows="False">
|
||||
x:Name="dgrdIgnore" ItemsSource="{Binding StreamersToIgnore}" AutoGenerateColumns="False" CanUserAddRows="False">
|
||||
<DataGrid.Columns>
|
||||
<DataGridCheckBoxColumn Header="Ignore" Binding="{Binding IsIgnored}" IsReadOnly="False" Width="50">
|
||||
</DataGridCheckBoxColumn>
|
||||
@@ -42,6 +42,11 @@
|
||||
</DataGridHyperlinkColumn.ElementStyle>
|
||||
</DataGridHyperlinkColumn>
|
||||
</DataGrid.Columns>
|
||||
<DataGrid.Resources>
|
||||
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}"
|
||||
Color="#FFF"/>
|
||||
<SolidColorBrush Color="#000" x:Key="{x:Static SystemColors.HighlightTextBrushKey}" />
|
||||
</DataGrid.Resources>
|
||||
</DataGrid>
|
||||
<Button Content="Close" Grid.Column="1" VerticalAlignment="Center" HorizontalAlignment="Right" Width="100" Grid.Row="5" Click="CloseBtn_Click" />
|
||||
<TextBlock Grid.Column="1" Grid.Row="1" TextWrapping="Wrap" Text="Changes to the ignore list are automatically saved." VerticalAlignment="Top"/>
|
||||
|
||||
@@ -25,11 +25,6 @@ namespace TwitchDesktopNotifications
|
||||
this.Close();
|
||||
}
|
||||
|
||||
private void dgrdIgnore_SelectionChanged(object sender, SelectionChangedEventArgs e)
|
||||
{
|
||||
Dispatcher.BeginInvoke(DispatcherPriority.Render, new Action(() => dgrdIgnore.UnselectAll()));
|
||||
}
|
||||
|
||||
private void HyperLink_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
string link = ((Hyperlink)e.OriginalSource).NavigateUri.OriginalString;
|
||||
|
||||
Reference in New Issue
Block a user