// Global

        public void OnTweetPopup(string columnId, string chirpId, string columnName, string tweetHtml, int tweetCharacters, string tweetUrl, string quoteUrl)
        {
            notification.InvokeAsyncSafe(() => {
                form.OnTweetNotification();
                notification.ShowNotification(new DesktopNotification(columnId, chirpId, columnName, tweetHtml, tweetCharacters, tweetUrl, quoteUrl));
            });
        }
예제 #2
0
 public void OnTweetPopup(string tweetHtml, string tweetUrl, int tweetCharacters)
 {
     notification.InvokeSafe(() => {
         form.OnTweetNotification();
         notification.ShowNotification(new TweetNotification(tweetHtml, tweetUrl, tweetCharacters));
     });
 }