Ejemplo n.º 1
0
        private void GenerateStasisField()
        {
            this.Opacity = 0;
            this.ShowInTaskbar = false;

            Image cropedImage;
            using (var stasis = new Stasisfield())
            {
                stasis.ShowDialog();
                cropedImage   = stasis.CropedImage;
            }

            this.ShowInTaskbar = true;
            this.Opacity = 255;

            if (cropedImage != null)
                TweetModerator.Tweet(cropedImage, false, "캡처 화면 전송중");
        }