mirror of
https://github.com/hama3254/Crunchyroll-Downloader-v3.0.git
synced 2024-11-13 03:35:05 +01:00
4bc91db2fa
dark mode added small fixes
150 lines
6.0 KiB
VB.net
150 lines
6.0 KiB
VB.net
Imports MetroFramework.Components
|
|
|
|
Public Class ErrorDialog
|
|
|
|
Dim Manager As MetroStyleManager = Main.Manager
|
|
|
|
|
|
Private Sub Reso_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
|
Manager.Owner = Me
|
|
Me.StyleManager = Manager
|
|
pictureBox3.Image = Main.CloseImg
|
|
|
|
Try
|
|
Me.Icon = My.Resources.icon
|
|
Catch ex As Exception
|
|
|
|
End Try
|
|
|
|
Me.Location = New Point(Main.Location.X + Main.Width / 2 - Me.Width / 2, Main.Location.Y + Main.Height / 2 - Me.Height / 2)
|
|
ComboBox1.Items.Clear()
|
|
If Main.DialogTaskString = "Language" Then
|
|
'CheckBox1.Visible = False
|
|
StatusLabel.Text = Main.LabelLangNotFoundText
|
|
Dim lang_avalibe As String() = Main.ResoNotFoundString.Split(New String() {Chr(34) + "hardsub_lang" + Chr(34) + ":"}, System.StringSplitOptions.RemoveEmptyEntries)
|
|
For i As Integer = 1 To lang_avalibe.Count - 1
|
|
Dim langsplit As String() = lang_avalibe(i).Split(New [Char]() {","})
|
|
ComboBox1.Items.Add(langsplit(0))
|
|
Next
|
|
SurroundingSub()
|
|
ElseIf Main.DialogTaskString = "Resolution" Then
|
|
StatusLabel.Text = Main.LabelResoNotFoundText
|
|
Dim Reso_avaible1 As String() = Main.ResoNotFoundString.Split(New String() {"RESOLUTION="}, System.StringSplitOptions.RemoveEmptyEntries)
|
|
For i As Integer = 1 To Reso_avaible1.Count - 1
|
|
Dim Reso_avaible2 As String() = Reso_avaible1(i).Split(New [Char]() {Chr(44)})
|
|
ComboBox1.Items.Add(Reso_avaible2(0))
|
|
Next
|
|
SurroundingSub()
|
|
Try
|
|
ComboBox1.SelectedIndex = 0
|
|
Catch ex As Exception
|
|
End Try
|
|
|
|
ElseIf Main.DialogTaskString = "Funimation_Resolution" Then
|
|
StatusLabel.Text = Main.LabelResoNotFoundText
|
|
Dim ResoList As New List(Of String)
|
|
Dim m3u8_split As String() = Main.ResoNotFoundString.Split(New String() {vbLf}, System.StringSplitOptions.RemoveEmptyEntries)
|
|
For i As Integer = 0 To m3u8_split.Count - 1
|
|
If InStr(m3u8_split(i), "RESOLUTION=") Then
|
|
ResoList.Add(m3u8_split(i))
|
|
End If
|
|
Next
|
|
|
|
Dim Reso_avaible1 As String() = Main.ResoNotFoundString.Split(New String() {"RESOLUTION="}, System.StringSplitOptions.RemoveEmptyEntries)
|
|
For i As Integer = 0 To ResoList.Count - 1
|
|
Dim Reso_avaible As String() = ResoList.Item(i).Split(New String() {"RESOLUTION="}, System.StringSplitOptions.RemoveEmptyEntries)
|
|
ComboBox1.Items.Add(Reso_avaible(1))
|
|
Next
|
|
SurroundingSub()
|
|
Try
|
|
ComboBox1.SelectedIndex = 0
|
|
Catch ex As Exception
|
|
End Try
|
|
ElseIf Main.DialogTaskString = "AoD_Resolution" Then
|
|
StatusLabel.Text = Main.LabelResoNotFoundText
|
|
Dim ResoList As New List(Of String)
|
|
Dim m3u8_split As String() = Main.ResoNotFoundString.Split(New String() {vbLf}, System.StringSplitOptions.RemoveEmptyEntries)
|
|
For i As Integer = 0 To m3u8_split.Count - 1
|
|
If InStr(m3u8_split(i), "RESOLUTION=") Then
|
|
ResoList.Add(m3u8_split(i))
|
|
End If
|
|
Next
|
|
|
|
Dim Reso_avaible1 As String() = Main.ResoNotFoundString.Split(New String() {"RESOLUTION="}, System.StringSplitOptions.RemoveEmptyEntries)
|
|
For i As Integer = 0 To ResoList.Count - 1
|
|
Dim Reso_avaible As String() = ResoList.Item(i).Split(New String() {"RESOLUTION="}, System.StringSplitOptions.RemoveEmptyEntries)
|
|
ComboBox1.Items.Add(Reso_avaible(1))
|
|
Next
|
|
SurroundingSub()
|
|
Try
|
|
ComboBox1.SelectedIndex = 0
|
|
Catch ex As Exception
|
|
End Try
|
|
End If
|
|
|
|
End Sub
|
|
|
|
Private Sub SurroundingSub()
|
|
Dim list As List(Of Object) = New List(Of Object)()
|
|
|
|
For Each o As Object In ComboBox1.Items
|
|
|
|
If Not list.Contains(o) Then
|
|
list.Add(o)
|
|
End If
|
|
Next
|
|
|
|
ComboBox1.Items.Clear()
|
|
ComboBox1.Items.AddRange(list.ToArray())
|
|
End Sub
|
|
|
|
|
|
Private Sub ComboBox1_DrawItem(sender As Object, e As DrawItemEventArgs) Handles ComboBox1.DrawItem
|
|
|
|
ComboBox1.BackColor = Color.White
|
|
If e.Index >= 0 Then
|
|
Using st As New StringFormat With {.Alignment = StringAlignment.Center}
|
|
' e.DrawBackground()
|
|
' e.DrawFocusRectangle()
|
|
e.Graphics.FillRectangle(SystemBrushes.ControlLightLight, e.Bounds)
|
|
e.Graphics.DrawString(ComboBox1.Items(e.Index).ToString, e.Font, Brushes.Black, e.Bounds, st)
|
|
|
|
End Using
|
|
End If
|
|
|
|
End Sub
|
|
|
|
Private Sub PictureBox9_Click(sender As Object, e As EventArgs) Handles PictureBox9.Click
|
|
If ComboBox1.SelectedItem.ToString = Nothing Then
|
|
Else
|
|
Main.ResoBackString = ComboBox1.SelectedItem.ToString
|
|
Main.UserCloseDialog = False
|
|
Me.Close()
|
|
End If
|
|
End Sub
|
|
|
|
Private Sub PictureBox9_MouseEnter(sender As Object, e As EventArgs) Handles PictureBox9.MouseEnter
|
|
PictureBox9.Image = My.Resources.DialogNotFound_Submit_hover
|
|
End Sub
|
|
|
|
Private Sub PictureBox9_MouseLeave(sender As Object, e As EventArgs) Handles PictureBox9.MouseLeave
|
|
PictureBox9.Image = My.Resources.DialogNotFound_Submit
|
|
End Sub
|
|
|
|
Private Sub PictureBox3_Click(sender As Object, e As EventArgs) Handles pictureBox3.Click
|
|
Main.UserCloseDialog = True
|
|
Me.Close()
|
|
End Sub
|
|
|
|
Private Sub Btn_Close_MouseEnter(sender As Object, e As EventArgs) Handles pictureBox3.MouseEnter
|
|
Dim PB As PictureBox = sender
|
|
PB.Image = My.Resources.main_del
|
|
End Sub
|
|
|
|
Private Sub Btn_Close_MouseLeave(sender As Object, e As EventArgs) Handles pictureBox3.MouseLeave
|
|
Dim PB As PictureBox = sender
|
|
PB.Image = Main.CloseImg
|
|
End Sub
|
|
|
|
|
|
End Class |