static public void StyleWPFLabel(System.Windows.Controls.Label l, Base.Settings s)
 {
     l.FontSize   = s.FontSize;
     l.Foreground = new System.Windows.Media.SolidColorBrush(System.Windows.Media.Color.FromArgb(
                                                                 255, s.FontColorR, s.FontColorG, s.FontColorB));
     l.FontFamily = s.FontFamilyFile != "system"
             ? new System.Windows.Media.FontFamily(new System.Uri(s.FontFamilyFile), s.FontFamilyName)
             : new System.Windows.Media.FontFamily(s.FontFamilyName);
 }
Ejemplo n.º 2
0
        public Client(Settings settings)
        {
            Settings = settings;
            var baseSettings = new Base.Settings(settings.UriProvider, settings.ReconnectTimeout);

            baseSettings.Disconnected    += BaseClientDisconnected;
            baseSettings.Reconnected     += BaseClientReconnected;
            baseSettings.MessageReceived += BaseClientMessageReceived;
            baseClient = new Base.Client(baseSettings);
        }
Ejemplo n.º 3
0
        public SvnConnection(string url, Base.Settings settings)
        {
            this.url      = url;
            this.settings = settings;

            if (settings.CodePage != null)
            {
                encoding = Encoding.GetEncoding(settings.CodePage.Value);
            }
        }
        static public void StyleWPFWindow(System.Windows.Window w, Base.Settings s)
        {
            w.Width      = s.WindowWidth;
            w.Height     = s.WindowHeight;
            w.Top        = s.WindowX;
            w.Left       = s.WindowY;
            w.Background = new System.Windows.Media.SolidColorBrush(System.Windows.Media.Color.FromArgb(
                                                                        255, s.WindowBackgroundR, s.WindowBackgroundG, s.WindowBackgroundB));

            w.Topmost       = true;
            w.WindowStyle   = System.Windows.WindowStyle.None;
            w.ResizeMode    = System.Windows.ResizeMode.NoResize;
            w.ShowInTaskbar = false;
        }
 static public void StyleWPFLabel(System.Windows.Controls.Label l, Base.Settings s)
 {
     l.FontSize   = s.FontSize;
     l.Foreground = new System.Windows.Media.SolidColorBrush(System.Windows.Media.Color.FromArgb(
                                                                 255, s.FontColorR, s.FontColorG, s.FontColorB));
     l.FontFamily = s.FontFamilyFile != "system"
             ? new System.Windows.Media.FontFamily(new System.Uri(s.FontFamilyFile), s.FontFamilyName)
             : new System.Windows.Media.FontFamily(s.FontFamilyName);
     l.MouseEnter += (object sender, System.Windows.Input.MouseEventArgs e) =>
     {
         l.Foreground = new System.Windows.Media.SolidColorBrush(System.Windows.Media.Color.FromArgb(255, s.FontColorHoverR, s.FontColorHoverG, s.FontColorHoverB));
     };
     l.MouseLeave += (object sender, System.Windows.Input.MouseEventArgs e) =>
     {
         l.Foreground = new System.Windows.Media.SolidColorBrush(System.Windows.Media.Color.FromArgb(255, s.FontColorR, s.FontColorG, s.FontColorB));
     };
 }
Ejemplo n.º 6
0
 public Svn(Base.Settings settings)
 {
     this.settings = settings;
 }