ImageGlass.frmSetting.chkLoopSlideshow_CheckedChanged C# (CSharp) Method

chkLoopSlideshow_CheckedChanged() private method

private chkLoopSlideshow_CheckedChanged ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void chkLoopSlideshow_CheckedChanged(object sender, EventArgs e)
        {
            GlobalSetting.IsLoopBackSlideShow = chkLoopSlideshow.Checked;
            GlobalSetting.SetConfig("IsLoopBackSlideShow", GlobalSetting.IsLoopBackSlideShow.ToString());
        }