コード例 #1
0
        void PackageCellViewPackageChecked(object sender, PackageCellViewEventArgs e)
        {
            if (e.PackageViewModel.IsChecked)
            {
                packagesCheckedCount++;
            }
            else
            {
                packagesCheckedCount--;
            }

            UpdateAddPackagesButton();
            UpdatePackageListViewSelectionColor();
            UpdatePackageListViewCheckBoxAlpha();
        }
コード例 #2
0
 void PackageCellViewPackageChecked(object sender, PackageCellViewEventArgs e)
 {
     UpdateAddPackagesButton();
     UpdatePackageListViewSelectionColor();
     UpdatePackageListViewCheckBoxAlpha();
 }
コード例 #3
0
		void PackageCellViewPackageChecked (object sender, PackageCellViewEventArgs e)
		{
			UpdateAddPackagesButton ();
			UpdatePackageListViewSelectionColor ();
			UpdatePackageListViewCheckBoxAlpha ();
		}
コード例 #4
0
		void PackageCellViewPackageChecked (object sender, PackageCellViewEventArgs e)
		{
			if (e.PackageViewModel.IsChecked) {
				packagesCheckedCount++;
			} else {
				packagesCheckedCount--;
			}

			UpdateAddPackagesButton ();
			UpdatePackageListViewSelectionColor ();
			UpdatePackageListViewCheckBoxAlpha ();
		}