KbtterWPF.SettingWindow.Window_Loaded C# (CSharp) Method

Window_Loaded() private method

private Window_Loaded ( object sender, RoutedEventArgs e ) : void
sender object
e System.Windows.RoutedEventArgs
return void
        private void Window_Loaded(object sender, RoutedEventArgs e)
        {
            TB_Preload.Text = cfg["Kbtter.General.PreloadTimeline"].NumberValue.ToString();
            TB_MaxTweet.Text = cfg["Kbtter.General.TimelineMax"].NumberValue.ToString();
            TB_MaxMention.Text = cfg["Kbtter.General.MentionMax"].NumberValue.ToString();
            TB_UserTweets.Text = cfg["Kbtter.General.UserTweetsMax"].NumberValue.ToString();
            TB_UserFing.Text = cfg["Kbtter.General.UserFollowingShow"].NumberValue.ToString();
            TB_UserFed.Text = cfg["Kbtter.General.UserFollowersShow"].NumberValue.ToString();
            TB_UserFavs.Text = cfg["Kbtter.General.UserFavoritesMax"].NumberValue.ToString();
            TB_Search.Text = cfg["Kbtter.General.SearchCount"].NumberValue.ToString();
            TB_ProtectedText.Text = cfg["Kbtter.General.ProtectedText"].StringValue;

            TB_Lang.Text = cfg["Kbtter.Environment.MessageFile"].StringValue;

            TB_NotifyReply.Text = cfg["Kbtter.Notifycation.ReplySound"].StringValue;
            TB_NotifyRetweeted.Text = cfg["Kbtter.Notifycation.RetweetedSound"].StringValue;
            TB_NotifyFav.Text = cfg["Kbtter.Notifycation.FavoritedSound"].StringValue;
            TB_NotifyUnfav.Text = cfg["Kbtter.Notifycation.UnfavoritedSound"].StringValue;
            TB_NotifyDM.Text = cfg["Kbtter.Notifycation.DMReceivedSound"].StringValue;

            ListPlugins();
        }