123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Media;
- namespace User44
- {
- public partial class Agent
- {
- public string logo
- {
- get
- {
- if (Logo != null)
- {
- return Logo;
- }
- else
- {
- return "Pictures/picture.png";
- }
- }
- }
- public SolidColorBrush Neon
- {
- get
- {
- SolidColorBrush br = new SolidColorBrush(System.Windows.Media.Color.FromRgb(255, 153, 153));
- if (Priority < 2000)
- {
- return br;
- }
- else
- {
- return Brushes.White;
- }
- }
- }
- }
- }
|