-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
373 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
<ui:ContentDialog | ||
x:Class="Sucrose.Portal.Views.Controls.OtherHelp" | ||
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:vcontrols="clr-namespace:Sucrose.Portal.Views.Controls" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
xmlns:local="clr-namespace:Sucrose.Portal.Views.Controls" | ||
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml" | ||
CloseButtonText="{DynamicResource Portal.OtherHelp.Close}" | ||
Title="{DynamicResource Portal.OtherHelp.Title}" | ||
DialogMaxWidth="750" | ||
mc:Ignorable="d"> | ||
|
||
<ui:ContentDialog.Resources> | ||
<Style BasedOn="{StaticResource {x:Type ui:ContentDialog}}" TargetType="{x:Type local:OtherHelp}" /> | ||
</ui:ContentDialog.Resources> | ||
|
||
<StackPanel x:Name="Panel" HorizontalAlignment="Stretch" VerticalAlignment="Center" Orientation="Vertical" MinWidth="400"> | ||
<vcontrols:ExpanderCard TitleText="İnternet Sayfası" DescriptionText="Sucrose Wallpaper Engine resmi internet sayfası" LeftIconSymbol="WebAsset24" Expandable="False"> | ||
<vcontrols:ExpanderCard.HeaderFrame> | ||
<ui:Button | ||
Cursor="Hand" | ||
Click="WebPage_Click" | ||
Appearance="Transparent" | ||
BorderBrush="Transparent" | ||
Icon="{ui:SymbolIcon LinkSquare24}" /> | ||
</vcontrols:ExpanderCard.HeaderFrame> | ||
</vcontrols:ExpanderCard> | ||
|
||
<vcontrols:ExpanderCard TitleText="Dokümantasyon" DescriptionText="Sucrose Wallpaper Engine resmi dökümantasyon sayfası" LeftIconSymbol="BookOpenGlobe24" Margin="0 3 0 0" Expandable="False"> | ||
<vcontrols:ExpanderCard.HeaderFrame> | ||
<ui:Button | ||
Cursor="Hand" | ||
Appearance="Transparent" | ||
BorderBrush="Transparent" | ||
Click="Documentation_Click" | ||
Icon="{ui:SymbolIcon LinkSquare24}" /> | ||
</vcontrols:ExpanderCard.HeaderFrame> | ||
</vcontrols:ExpanderCard> | ||
|
||
<vcontrols:ExpanderCard TitleText="Tartışmalar" DescriptionText="Sucrose Wallpaper Engine resmi tartışmalar sayfası" LeftIconSymbol="GlobePerson24" Margin="0 3 0 0" Expandable="False"> | ||
<vcontrols:ExpanderCard.HeaderFrame> | ||
<ui:Button | ||
Cursor="Hand" | ||
Appearance="Transparent" | ||
Click="Discussions_Click" | ||
BorderBrush="Transparent" | ||
Icon="{ui:SymbolIcon LinkSquare24}" /> | ||
</vcontrols:ExpanderCard.HeaderFrame> | ||
</vcontrols:ExpanderCard> | ||
|
||
<vcontrols:ExpanderCard TitleText="Kaynak Kodu" DescriptionText="Sucrose Wallpaper Engine resmi kaynak kodu sayfası" LeftIconSymbol="CodeBlock24" Margin="0 3 0 0" Expandable="False"> | ||
<vcontrols:ExpanderCard.HeaderFrame> | ||
<ui:Button | ||
Cursor="Hand" | ||
Appearance="Transparent" | ||
Click="Repository_Click" | ||
BorderBrush="Transparent" | ||
Icon="{ui:SymbolIcon LinkSquare24}" /> | ||
</vcontrols:ExpanderCard.HeaderFrame> | ||
</vcontrols:ExpanderCard> | ||
|
||
<vcontrols:ExpanderCard TitleText="Hata Bildir" DescriptionText="Sucrose Wallpaper Engine resmi hata bildirme sayfası" LeftIconSymbol="Bug24" Margin="0 3 0 0" Expandable="False"> | ||
<vcontrols:ExpanderCard.HeaderFrame> | ||
<ui:Button | ||
Cursor="Hand" | ||
Click="Report_Click" | ||
Appearance="Transparent" | ||
BorderBrush="Transparent" | ||
Icon="{ui:SymbolIcon LinkSquare24}" /> | ||
</vcontrols:ExpanderCard.HeaderFrame> | ||
</vcontrols:ExpanderCard> | ||
</StackPanel> | ||
</ui:ContentDialog> |
48 changes: 48 additions & 0 deletions
48
src/Portal/Sucrose.Portal/Views/Controls/OtherHelp.xaml.cs
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,48 @@ | ||
using System.Windows; | ||
using Wpf.Ui.Controls; | ||
using SPMI = Sucrose.Portal.Manage.Internal; | ||
|
||
namespace Sucrose.Portal.Views.Controls | ||
{ | ||
/// <summary> | ||
/// OtherHelp.xaml etkileşim mantığı | ||
/// </summary> | ||
public partial class OtherHelp : ContentDialog, IDisposable | ||
{ | ||
public OtherHelp() : base(SPMI.ContentDialogService.GetContentPresenter()) | ||
{ | ||
InitializeComponent(); | ||
} | ||
|
||
private void Report_Click(object sender, RoutedEventArgs e) | ||
{ | ||
|
||
} | ||
|
||
private void WebPage_Click(object sender, RoutedEventArgs e) | ||
{ | ||
|
||
} | ||
|
||
private void Repository_Click(object sender, RoutedEventArgs e) | ||
{ | ||
|
||
} | ||
|
||
private void Discussions_Click(object sender, RoutedEventArgs e) | ||
{ | ||
|
||
} | ||
|
||
private void Documentation_Click(object sender, RoutedEventArgs e) | ||
{ | ||
|
||
} | ||
|
||
public void Dispose() | ||
{ | ||
GC.Collect(); | ||
GC.SuppressFinalize(this); | ||
} | ||
} | ||
} |
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: 8 additions & 0 deletions
8
...red/Sucrose.Shared.Resources/Locales/Portal/Controls/OtherAbout/Portal.OtherAbout.DE.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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<ResourceDictionary | ||
xmlns:system="clr-namespace:System;assembly=mscorlib" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
> | ||
<system:String x:Key="Portal.OtherAbout.Title">Hakkında</system:String> | ||
<system:String x:Key="Portal.OtherAbout.Close">Kapat</system:String> | ||
</ResourceDictionary> |
8 changes: 8 additions & 0 deletions
8
...red/Sucrose.Shared.Resources/Locales/Portal/Controls/OtherAbout/Portal.OtherAbout.EN.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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<ResourceDictionary | ||
xmlns:system="clr-namespace:System;assembly=mscorlib" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
> | ||
<system:String x:Key="Portal.OtherAbout.Title">Hakkında</system:String> | ||
<system:String x:Key="Portal.OtherAbout.Close">Kapat</system:String> | ||
</ResourceDictionary> |
8 changes: 8 additions & 0 deletions
8
...red/Sucrose.Shared.Resources/Locales/Portal/Controls/OtherAbout/Portal.OtherAbout.ES.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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<ResourceDictionary | ||
xmlns:system="clr-namespace:System;assembly=mscorlib" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
> | ||
<system:String x:Key="Portal.OtherAbout.Title">Hakkında</system:String> | ||
<system:String x:Key="Portal.OtherAbout.Close">Kapat</system:String> | ||
</ResourceDictionary> |
8 changes: 8 additions & 0 deletions
8
...red/Sucrose.Shared.Resources/Locales/Portal/Controls/OtherAbout/Portal.OtherAbout.FR.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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<ResourceDictionary | ||
xmlns:system="clr-namespace:System;assembly=mscorlib" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
> | ||
<system:String x:Key="Portal.OtherAbout.Title">Hakkında</system:String> | ||
<system:String x:Key="Portal.OtherAbout.Close">Kapat</system:String> | ||
</ResourceDictionary> |
8 changes: 8 additions & 0 deletions
8
...red/Sucrose.Shared.Resources/Locales/Portal/Controls/OtherAbout/Portal.OtherAbout.PL.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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<ResourceDictionary | ||
xmlns:system="clr-namespace:System;assembly=mscorlib" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
> | ||
<system:String x:Key="Portal.OtherAbout.Title">Hakkında</system:String> | ||
<system:String x:Key="Portal.OtherAbout.Close">Kapat</system:String> | ||
</ResourceDictionary> |
8 changes: 8 additions & 0 deletions
8
...red/Sucrose.Shared.Resources/Locales/Portal/Controls/OtherAbout/Portal.OtherAbout.TR.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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<ResourceDictionary | ||
xmlns:system="clr-namespace:System;assembly=mscorlib" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
> | ||
<system:String x:Key="Portal.OtherAbout.Title">Hakkında</system:String> | ||
<system:String x:Key="Portal.OtherAbout.Close">Kapat</system:String> | ||
</ResourceDictionary> |
8 changes: 8 additions & 0 deletions
8
...hared/Sucrose.Shared.Resources/Locales/Portal/Controls/OtherHelp/Portal.OtherHelp.DE.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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<ResourceDictionary | ||
xmlns:system="clr-namespace:System;assembly=mscorlib" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
> | ||
<system:String x:Key="Portal.OtherHelp.Title">Yardım</system:String> | ||
<system:String x:Key="Portal.OtherHelp.Close">Kapat</system:String> | ||
</ResourceDictionary> |
8 changes: 8 additions & 0 deletions
8
...hared/Sucrose.Shared.Resources/Locales/Portal/Controls/OtherHelp/Portal.OtherHelp.EN.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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<ResourceDictionary | ||
xmlns:system="clr-namespace:System;assembly=mscorlib" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
> | ||
<system:String x:Key="Portal.OtherHelp.Title">Yardım</system:String> | ||
<system:String x:Key="Portal.OtherHelp.Close">Kapat</system:String> | ||
</ResourceDictionary> |
8 changes: 8 additions & 0 deletions
8
...hared/Sucrose.Shared.Resources/Locales/Portal/Controls/OtherHelp/Portal.OtherHelp.ES.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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<ResourceDictionary | ||
xmlns:system="clr-namespace:System;assembly=mscorlib" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
> | ||
<system:String x:Key="Portal.OtherHelp.Title">Yardım</system:String> | ||
<system:String x:Key="Portal.OtherHelp.Close">Kapat</system:String> | ||
</ResourceDictionary> |
8 changes: 8 additions & 0 deletions
8
...hared/Sucrose.Shared.Resources/Locales/Portal/Controls/OtherHelp/Portal.OtherHelp.FR.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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<ResourceDictionary | ||
xmlns:system="clr-namespace:System;assembly=mscorlib" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
> | ||
<system:String x:Key="Portal.OtherHelp.Title">Yardım</system:String> | ||
<system:String x:Key="Portal.OtherHelp.Close">Kapat</system:String> | ||
</ResourceDictionary> |
8 changes: 8 additions & 0 deletions
8
...hared/Sucrose.Shared.Resources/Locales/Portal/Controls/OtherHelp/Portal.OtherHelp.PL.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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<ResourceDictionary | ||
xmlns:system="clr-namespace:System;assembly=mscorlib" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
> | ||
<system:String x:Key="Portal.OtherHelp.Title">Yardım</system:String> | ||
<system:String x:Key="Portal.OtherHelp.Close">Kapat</system:String> | ||
</ResourceDictionary> |
8 changes: 8 additions & 0 deletions
8
...hared/Sucrose.Shared.Resources/Locales/Portal/Controls/OtherHelp/Portal.OtherHelp.TR.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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<ResourceDictionary | ||
xmlns:system="clr-namespace:System;assembly=mscorlib" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
> | ||
<system:String x:Key="Portal.OtherHelp.Title">Yardım</system:String> | ||
<system:String x:Key="Portal.OtherHelp.Close">Kapat</system:String> | ||
</ResourceDictionary> |
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
Oops, something went wrong.