-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renamed extension from Link Manager to Link Utilities
- Loading branch information
Showing
15 changed files
with
83 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
LinkManagerSettingsView.xaml → LinkUtilitiesSettingsView.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
<UserControl x:Class="LinkManager.LinkManagerSettingsView" | ||
<UserControl x:Class="LinkUtilities.LinkUtilitiesSettingsView" | ||
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:linkmanager="clr-namespace:LinkManager" | ||
d:DataContext="{d:DesignInstance Type=linkmanager:LinkManagerSettingsViewModel}" | ||
xmlns:linkutilities="clr-namespace:LinkUtilities" | ||
d:DataContext="{d:DesignInstance Type=linkutilities:LinkUtilitiesSettingsViewModel}" | ||
mc:Ignorable="d" | ||
d:DesignHeight="400" d:DesignWidth="600"> | ||
<StackPanel> | ||
<TextBlock Text="{DynamicResource LOCLinkManagerSettingsItchApiKey}" Margin="20,20,20,0"/> | ||
<TextBlock Text="{DynamicResource LOCLinkUtilitiesSettingsItchApiKey}" Margin="20,20,20,0"/> | ||
<TextBox Text="{Binding Settings.ItchApiKey}" Margin="20,5,20,0"/> | ||
</StackPanel> | ||
</UserControl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using System.Windows.Controls; | ||
|
||
namespace LinkUtilities | ||
{ | ||
public partial class LinkUtilitiesSettingsView : UserControl | ||
{ | ||
public LinkUtilitiesSettingsView() | ||
{ | ||
InitializeComponent(); | ||
} | ||
} | ||
} |
Oops, something went wrong.