惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
S
Security @ Cisco Blogs
N
News and Events Feed by Topic
H
Hacker News: Front Page
Attack and Defense Labs
Attack and Defense Labs
S
Secure Thoughts
Microsoft Security Blog
Microsoft Security Blog
N
Netflix TechBlog - Medium
U
Unit 42
Stack Overflow Blog
Stack Overflow Blog
T
Threat Research - Cisco Blogs
Google Online Security Blog
Google Online Security Blog
Spread Privacy
Spread Privacy
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
L
LINUX DO - 热门话题
T
Tenable Blog
博客园 - 叶小钗
D
DataBreaches.Net
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
人人都是产品经理
人人都是产品经理
aimingoo的专栏
aimingoo的专栏
C
Check Point Blog
博客园 - 三生石上(FineUI控件)
量子位
P
Proofpoint News Feed
H
Help Net Security
Blog — PlanetScale
Blog — PlanetScale
宝玉的分享
宝玉的分享
Recorded Future
Recorded Future
The Register - Security
The Register - Security
F
Fortinet All Blogs
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
S
Schneier on Security
V
Vulnerabilities – Threatpost
雷峰网
雷峰网
Microsoft Azure Blog
Microsoft Azure Blog
G
GRAHAM CLULEY
G
Google Developers Blog
月光博客
月光博客
V
V2EX
T
Troy Hunt's Blog
A
Arctic Wolf

博客园 - FredGrit

WPF ContentControl invoke Template from resource, reuse datatemplate WPF deserialize xml string as List via [XmlRoot] and [XmlElement] attribute WPF ContentControl Template WPF DatagridTemplate Binding DataTemplate WPF TreeView explicitly given key name to HierarchicalDataTemplate WPF, parse XMlDocument as List WPF two separated datagrid scroll synchronously both in horizontal and vertical via behavior WPF ContentControl Template is ControlTemplate, ContentTemplate is DataTemplate and must assign value to Content explicitly WPF TreeView show WCF config file WPF itemscontrol loaded downloaded data from WCF via httpclient WPF TreeView HierarchicalDataTemplate DataTemplate, Enum get enum name WPF consume xml generated by WCF , C# deserialize xml to List WPF implemented ICommand and IDisposable WPF ContextMenu,MenuItem command can binding to datacontext's command directly WPF usercontrol pass contextmenu command via implemented Freezable class which does not attach on Visual tree, then invoked in caller MVVM WPF consume data generate by WCF and save via ContextMenu Command in MVVM C# export List<T> to excel file via EPPlus WPF ContextMenu does not rely on host visual tree, the Freezable can exist independently, convey dependency property in usercontrol to caller C# JsonConvert DeserializeObject MissingMemberHandling.Ignore when the source model is completed and the required is partial Freezable objects do not require attachment to the WPF visual tree, maintain a persistent lifetime, and serve as a reliable binding relay between a detached ContextMenu and its parent host control. C# run httplistener to act as service application asynchronously in console, semaphoreslim allow the max concurrent number WPF Microsoft.Xaml.Behaviors.WPF, EventTrigger EventName="PreviewMouseDown" the tunnel event, while the MouseDown can't trigger the command because it was swallowed WPF customize command implemented ICommand, volatile read method is thread safe, preventing cpu and comipler reorder and optimization. WPF ItemsControl load huge 50M+ data WPF consume data generated by WCF periodically in json format WPF customize command based on ICommand and manually trigger WPF consume data generated by grpc services C# produce and consume data via Google.Protobuf WCF produce message and WPF consume periodically via DispatcherTimer WCF deconstruct WebConfig includes bindings, behaviors, service, endpoint ,serviceHostingEnvironment C# insert data into SQLite in batch periodically WPF SQLite SQLiteStudio WPF customize MultiSelectComboBox based on combobox WPF DataGrid Context menu binding command and commandparameter to datacontext WCF set fixed port as http://localhost:8888/ via Project /Properties/web/project url to create virtual directory WPF customize datagrid behavior based on behavior&lt;datagrid&gt; with command and command parameter WPF Microsoft Visual Studio XAML designer is busy WCF WebHttpBinding support both http and https WCF support basicHttpBinding and webHttpBinding - FredGrit WCF TestClient set fixed configuration file WPF consume http json and update periodically via DispatcherTimer WPF Prism.Core version 9.0.537 implemented navigation register singleton with splash screen, pass global variable via RegisterSingleton method WPF render periodically via DispatcherTimer, customize behavior - FredGrit Python cosume WCF service via requests in json format WPF call webHttpBinding from WCF WCF binding webHttpBinding is used to web browser in json format both in request and response WPF invoke WCF dll periodically via DispatcherTimer WCF webHttpBinding is open for web browser and wpf WPF DataTemplateSelector WPF DataGrid customize behavior with multiple commands and command parameters then invoke in mvvm WPF DataGrid behavior customize command and command parameter then invoke and implemented in MVVM WPF ItemsControl customize behavior and save all items WCF service can be accessed by browser WPF WCF produce data as service and WPF consume data as client periodically WPF customize behavior based on Microsoft.Xaml.Behaviors.Wpf with command and commandparameter WPF call data from CPP wrapper dll via CLI\CLR - FredGrit WPF customize behavior WPF get gpu information via System.Management WPF ItemsControl IsItemsHost=True WPF Customize behavior and dependency property command C# Serilog, Serilog.Sinks.Console, Serilog.Sinks.File C# Serilog both in file and console Windows powershell view huge file via command C# serialize huge data more than 100M via splitting into batch and concatenating as one big json file WPF WeakReference C# serialize datetime then deserialize, print lose precision. resolve by ToString(&quot;o&quot;) C# produce data and send via WebSocket as service, Python,Flask,HTML as consumer invoke periodically C# write generated data service and sent via websocket, then consume by python periodically C# DateTime print precision to microseconds C# WebSocket console as service provide data, another console as client,send request periodically C# WebAPI [HttpGet(&quot;{cnt}&quot;] pass argument WPF implement ICommand with async execute WPF ListBox control virtualization in mvvm WPF Data Source invoke from web api C# WebAPI
WPF GRPC and Probuf generated data as service then consume by wpf periodically
FredGrit · 2026-04-21 · via 博客园 - FredGrit
Install-Package Grpc.AspNetCore
Install-Package Grpc.Net.Client
Install-Package Google.Protobuf
Install-Package Grpc.Tools
//Add book.proto and shared both in service and client program
syntax = "proto3";

option csharp_namespace="BookNameSpace";
package BookNameSpace;
 
message Book {
  int64 id = 1;
  string name = 2;
  string author = 3;
  string isbn = 4;
  string title = 5;
  string summary = 6;
  string topic = 7;
  string abstract2 = 8;
}

 
message BookRequest {
  string action = 1;
  int32 count = 2;
  int64 startId = 3;
}

 
message BookResponse {
  int32 status = 1;
  string message = 2;
  repeated Book books = 3;
}

service BookService{
    rpc GetBooks(BookRequest) returns (BookResponse);
}

image

//service

//D:\C\ConsoleApp14\ConsoleApp14\appsettings.json
{
  "Kestrel": {
    "Endpoints": {
      "Http": {
        "Url": "http://localhost:5000"
      }
    }
  }
}

//D:\C\ConsoleApp14\ConsoleApp14\Program.cs
using BookNameSpace;
using Grpc.Core;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Server.Kestrel.Core;
using Microsoft.Extensions.DependencyInjection;
using static BookNameSpace.BookService;

namespace ConsoleApp14
{
    internal class Program
    {
        static long id = 0;
        static void Main(string[] args)
        {
            GrpcDemo(args);
            Console.WriteLine("Hello, World!");
        }

        static void GrpcDemo(string[] args)
        {
            var builder = WebApplication.CreateBuilder(args);

            builder.WebHost.ConfigureKestrel(serverOPtions =>
            {
                //5000 for grpc http/2
                serverOPtions.ListenLocalhost(5000, a => a.Protocols =
                HttpProtocols.Http2);

                //5001:http/1.1 
                serverOPtions.ListenLocalhost(5001, a => a.Protocols = HttpProtocols.Http1);
            });

            builder.Services.AddGrpc(options =>
            {
                options.MaxReceiveMessageSize = null;
                options.MaxSendMessageSize = null;
            });
            

            builder.Services.AddControllers();

            builder.Services.AddSingleton<BookIdGenerator>();

            var app = builder.Build();
            app.MapGet("/", 
                () => $"{DateTime.Now},grpc service runtime\nclient connection:http://locahost:5000\nWebAPI:http://localhost:5001/api/book\nBrowser:http://localhost:5001/api/book");

            app.MapGet("api/book", (BookIdGenerator generator) =>
            {
                var list = new List<Book>();

                for(int i=0;i<100000;i++)
                {
                    id=generator.GetNextId();
                    list.Add(new Book
                    {
                        Id=id,
                        Name=$"Name_{id}",
                        Isbn=$"ISBN_{id}_{Guid.NewGuid():N}",
                        Author=$"Author_{id}",
                        Abstract2=$"Abstract2_{id}",
                        Title=$"Title_{id}",
                        Topic=$"Topic_{id}",
                        Summary=$"Summary_{id}"
                    });
                }
                Console.WriteLine($"{DateTime.Now},id:{id},has generated {list.Count} books");
                return Results.Ok(list);
            });


            app.MapGet("api/book/stream", async (BookIdGenerator generator, HttpContext context) =>
            {
                const int ReturnCount = 100000;
                context.Response.ContentType = "application/json";
                await context.Response.WriteAsync("[");

                for (int i = 0; i < ReturnCount; i++)
                {
                    id = generator.GetNextId();
                    var book = new Book
                    {
                        Id = id,
                        Name = $"Name_{id}",
                        Isbn = $"ISBN_{id}_{Guid.NewGuid():N}",
                        Author = $"Author_{id}",
                        Abstract2 = $"Abstract2_{id}",
                        Title = $"Title_{id}",
                        Topic = $"Topic_{id}",
                        Summary = $"Summary_{id}"
                    }; 
                    await System.Text.Json.JsonSerializer.SerializeAsync(context.Response.Body, book);
                    if (i != ReturnCount - 1)
                        await context.Response.WriteAsync(",");
                    await context.Response.Body.FlushAsync(); 
                }

                await context.Response.WriteAsync("]");
                Console.WriteLine($"{DateTime.Now},id:{id} generated  {ReturnCount} in stream");
            });

            app.MapGrpcService<BookServiceImpl>();
            Console.WriteLine($"{DateTime.Now},grpc service started");
            app.Run();
        }
    }

    public class BookIdGenerator
    {
        private long _id = 0;
        public long GetNextId()
        {
            return Interlocked.Increment(ref _id);
        }
    }

    public class BookServiceImpl : BookServiceBase
    {
        private readonly BookIdGenerator idGenerator;

        public BookServiceImpl(BookIdGenerator idGeneratorValue)
        {
            idGenerator = idGeneratorValue;
        }

        public override Task<BookResponse> GetBooks(BookRequest request, ServerCallContext context)
        {
            Console.WriteLine($"{DateTime.Now},receive client request.");

            var response = new BookResponse();

            for (int i = 0; i < 1000000; i++)
            {
                long id = idGenerator.GetNextId();
                response.Books.Add(new Book
                {
                    Id = id,
                    Name = $"Name_{id}",
                    Isbn = $"ISBN_{id}_{Guid.NewGuid():N}",
                    Author = $"Author_{id}",
                    Abstract2 = $"Abstract2_{id}",
                    Title = $"Title_{id}",
                    Topic = $"Topic_{id}",
                    Summary = $"Summary_{id}"
                });
            }

            Console.WriteLine($"{DateTime.Now},had generated {response.Books.Count} data\n\n\n");
            return Task.FromResult(response);
        }
    }
}

//Client wpf

<Window x:Class="WpfApp17.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:WpfApp17"
        mc:Ignorable="d"
        WindowState="Maximized"
        Title="{Binding MainTitle}">
    <Window.DataContext>
        <local:MainVM/>
    </Window.DataContext>
    <Grid>
        <DataGrid ItemsSource="{Binding BooksCollection}"
                   VirtualizingPanel.IsVirtualizing="True"
                   VirtualizingPanel.VirtualizationMode="Recycling"
                   VirtualizingPanel.CacheLengthUnit="Item"
                   VirtualizingPanel.CacheLength="5,5"
                   ScrollViewer.IsDeferredScrollingEnabled="True"
                   ScrollViewer.CanContentScroll="True"
                   IsReadOnly="True"
                   AutoGenerateColumns="True"
                   CanUserAddRows="False">
            <DataGrid.Resources>
                <Style TargetType="DataGridRow">
                    <Setter Property="FontSize" Value="30"/>
                    <Style.Triggers>
                        <Trigger Property="IsMouseOver" Value="True">
                            <Setter Property="FontSize" Value="60"/>
                            <Setter Property="Foreground" Value="Red"/>
                        </Trigger>
                    </Style.Triggers>
                </Style>
            </DataGrid.Resources>
        </DataGrid>
    </Grid>
</Window>


using BookNameSpace;
using Grpc.Net.Client;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Text;
using System.Timers;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using static BookNameSpace.BookService;

namespace WpfApp17
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }
    }

    public class MainVM : INotifyPropertyChanged
    {
        System.Timers.Timer tmr;

        static GrpcChannel grpcChannel;
        static BookServiceClient client; 
        public MainVM()
        {
            AppContext.SetSwitch("System.Net.Http.SocketsHttpHandler.Http2UnencryptedSupport", true);
            var channelOptions = new GrpcChannelOptions
            {
                MaxReceiveMessageSize = null,
                MaxSendMessageSize = null
            };
            grpcChannel = GrpcChannel.ForAddress("http://localhost:5000", channelOptions);
            client = new BookServiceClient(grpcChannel);
            System.Diagnostics.Debug.WriteLine($"{DateTime.Now} client started,every 10 seconds request once");
            MainTitle = $"\n{DateTime.Now},start to request 1 million books";

            BooksCollection = new ObservableCollection<Book>();
            tmr = new System.Timers.Timer();
            tmr.Elapsed +=async(s,e)=>await RequestGrpcDataAsync();
            tmr.Interval = 1;
            tmr.Start();
        }

        private async Task RequestGrpcDataAsync()
        {
            if (tmr.Interval<100)
            {
                tmr.Interval = 10000;
            }

            try
            { 
                var response = await client.GetBooksAsync(new BookRequest());
                System.Diagnostics.Debug.WriteLine($"{DateTime.Now},recevived {response.Books.Count} books");

                if (response.Books.Any())
                {
                    BooksCollection=new ObservableCollection<Book>(response.Books);
                    var lastBk = response.Books.Last();
                    var firstBk=response.Books.First();
                    MainTitle = $"{DateTime.Now},recevived {response.Books.Count} books,First Id:{firstBk.Id},First Name:{firstBk.Name},Last Id:{lastBk.Id},Last Name={lastBk.Name}";
                    System.Diagnostics.Debug.WriteLine(MainTitle);
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show($"{DateTime.Now},request failed:{ex.Message}");
            }
        } 

        private string mainTitle;
        public string MainTitle
        {
            get
            {
                return mainTitle;
            }
            set
            {
                if(value!=mainTitle)
                {
                    mainTitle = value;
                    OnPropertyChanged();
                }
            }
        }

        private ObservableCollection<Book> booksCollection;
        public ObservableCollection<Book> BooksCollection
        {
            get
            {
                return booksCollection;
            }
            set
            {
                if (value != booksCollection)
                {
                    booksCollection = value;
                    OnPropertyChanged();
                }
            }
        }
        public event PropertyChangedEventHandler? PropertyChanged;
        private void OnPropertyChanged([CallerMemberName] string propName = "")
        {
            var handler = PropertyChanged;
            handler?.Invoke(this, new PropertyChangedEventArgs(propName));
        }
    }
}

image

image

image

http://localhost:5001/api/book

image

http://localhost:5001/api/book/stream

image