public async void Window_Show(bool IsFeedIn, string Message)
 {
     Voice_Select_S.Maximum = Server_Voices.Voice_List.Count - 1;
     Voice_Select_S.Value   = 0;
     Voice_Select_T.Text    = "1/" + Server_Voices.Voice_List.Count;
     if (IsFeedIn)
     {
         Opacity    = 0;
         Visibility = System.Windows.Visibility.Visible;
         while (Opacity < 1 && !IsClosing)
         {
             Opacity += Sub_Code.Window_Feed_Time;
             await Task.Delay(1000 / 60);
         }
     }
     Opacity    = 1;
     Visibility = System.Windows.Visibility.Visible;
     Volume_S.Focus();
     if (Message != "")
     {
         Message_Feed_Out(Message);
     }
 }