コード例 #1
0
        private void l(MFile file, string name, int max, int value)
        {
            var e = new DownloadFileChangedEventArgs()
            {
                FileKind     = file,
                FileName     = name,
                MaxValue     = max,
                CurrentValue = value
            };

            ChangeFile?.Invoke(e);
        }
コード例 #2
0
ファイル: MDownloader.cs プロジェクト: Scrr1pt/arsuslauncherr
        private void l(MFile file, string name, int max, int value)
        {
            var e = new DownloadFileChangedEventArgs()
            {
                FileKind            = file,
                FileName            = name,
                TotalFileCount      = max,
                ProgressedFileCount = value
            };

            ChangeFile?.Invoke(e);
        }