使用C#开发ChatGPT聊天程序

使用C#开发ChatGPT聊天程序

总体效果如下:

使用C#开发ChatGPT聊天程序
源码下载

; 关键点1:无边框窗口拖动

Window中设置 AllowsTransparency="True"Background="Transparent"以及 WindowStyle="None"这样设置的话默认窗口的标题栏为不可见状态,且无法用鼠标拖动,使用windowChorme来解决

<WindowChrome.WindowChrome>
    <WindowChrome CaptionHeight="50" UseAeroCaptionButtons="False" />
WindowChrome.WindowChrome>

该设置的详细讲解参见WPF之Window无边框拖动、特殊形状、Grid拖拽

关键点2:输入栏实现删除按钮

使用C#开发ChatGPT聊天程序
  1. 定义TextBox的ControlTemplate模板(节取重要部分)
<Style x:Key="TextBoxPromote" TargetType="{x:Type TextBox}">
            "Template">

                    "{x:Type TextBox}">
                        x:Name="border"
                            CornerRadius="6"
                            "True">

                                x:Name="btn"
                                    Grid.Column="1"
                                    Background="White"
                                    BorderThickness="0"
                                    Click="Button_Click"
                                    Content=""
                                    DockPanel.Dock="Right"
                                    FontFamily="./img/#iconfont" />

                                x:Name="PART_ContentHost"
                                    DockPanel.Dock="Left"
                                    Focusable="false"
                                    HorizontalScrollBarVisibility="Hidden"
                                    VerticalScrollBarVisibility="Hidden" />

                            "{Binding RelativeSource={RelativeSource Self}, Path=Text}" Value="">
                                "btn" Property="Visibility" Value="Collapsed" />

        Style>
  1. 实现Button按钮事件
private void Button_Click(object sender, RoutedEventArgs e)
{
    Button? btn = sender as Button;
    if (btn != null)
    {
        var parent = VisualTreeHelper.GetParent(btn);
        while (!(parent is TextBox))
        {
            parent = VisualTreeHelper.GetParent(parent);
        }
        TextBox txt = parent as TextBox;
        if (txt != null)
        {
            txt.Clear();
        }
    }
}

关键点3:ListBox实现聊天效果

使用C#开发ChatGPT聊天程序

本文使用ListBox来完成消息框的展示,因为涉及到发送和收到两种类型的消息,应该对应两种不同格式,所以会用到样式选择器,不知道怎么用的小伙伴可以看一下这篇文章WPF控件模板、数据模板、容器样式选择器

  1. 定义选择器类
public class DateTemplateSelector:DataTemplateSelector
{
    public DataTemplate SendTemplate { get; set; }
    public DataTemplate ResTemplate { get; set; }
    public override DataTemplate SelectTemplate(object item, DependencyObject container)
    {
        Message message = (Message)item;

        if (message.IsSend)
        {
            return SendTemplate;
        }
        else
        {
            return ResTemplate;
        }
    }
}
  1. 在Windwo.Resources中定义数据模板

发送模板

<DataTemplate x:Key="chatSend">
    <StackPanel
        x:Name="SendMsg"
        Margin="0,12,20,0"
        HorizontalAlignment="Right"
        Orientation="Horizontal">
        <StackPanel Margin="0,0,10,0" Orientation="Vertical">

            <Border
                MinWidth="50"
                MinHeight="30"
                MaxWidth="{Binding Path=ActualWidth,ElementName=borderWidth}"
                Background="#c8dd1f"
                BorderBrush="#ddd"
                BorderThickness="1"
                CornerRadius="8,0,8,8">
                <TextBox
                    MinWidth="30"
                    Margin="8"
                    VerticalAlignment="Center"
                    Background="Transparent"
                    BorderThickness="0"
                    FontSize="14"
                    IsReadOnly="True"
                    Text="{Binding Msg}"
                    TextWrapping="WrapWithOverflow" />
            Border>
        StackPanel>

        <Border
            Width="35"
            Height="35"
            Margin="0,2,0,0"
            VerticalAlignment="Top"
            BorderThickness="0">
            <Border.Background>
                <ImageBrush ImageSource="/img/user.jpg" />
            Border.Background>
        Border>
    StackPanel>
DataTemplate>

接收模板

<DataTemplate x:Key="chatRes">
    <StackPanel
        x:Name="SendMsg"
        Margin="0,12,20,0"
        HorizontalAlignment="Right"
        Orientation="Horizontal">

        <Border
                    Width="35"
                    Height="35"
                    Margin="0,2,0,0"
                    VerticalAlignment="Top"
                    BorderThickness="0">
                    <Border.Background>
                        <ImageBrush ImageSource="/img/图标ChatGPT.ico" />
                    Border.Background>
                Border>
        <StackPanel Margin="0,0,10,0" Orientation="Vertical">

            <Border
                MinWidth="50"
                MinHeight="30"
                MaxWidth="{Binding Path=ActualWidth,ElementName=borderWidth}"
                Background="#c8dd1f"
                BorderBrush="#ddd"
                BorderThickness="1"
                CornerRadius="0,8,8,8">
                <TextBox
                    MinWidth="30"
                    Margin="8"
                    VerticalAlignment="Center"
                    Background="Transparent"
                    BorderThickness="0"
                    FontSize="14"
                    IsReadOnly="True"
                    MaxLength="25"
                    Text="{Binding Msg}"
                    TextWrapping="WrapWithOverflow" />
            Border>
        StackPanel>
    StackPanel>
DataTemplate>
  1. 因为发送消息和接受消息的对齐方式不同,一个是左一个是右,所以要定义下 ListBox.ItemContainerStyle
<Style x:Key="listViewItemStyle" TargetType="{x:Type ListBoxItem}">
    "FocusVisualStyle" Value="{x:Null}" />
    "Template">

            "{x:Type ListBoxItem}">
                "Bd"
                    Margin="1"
                    Padding="{TemplateBinding Padding}"
                    Background="{TemplateBinding Background}"
                    BorderBrush="{TemplateBinding BorderBrush}"
                    BorderThickness="{TemplateBinding BorderThickness}"
                    SnapsToDevicePixels="true">
                    "1"
                        HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
                        VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
                        SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />

        "{Binding IsSend}" Value="True">
            "HorizontalContentAlignment" Value="Stretch" />

        "{Binding IsSend}" Value="False">
            "HorizontalContentAlignment" Value="Left" />

Style>
  1. 为了实现ListBox始终保持下拉到最后的状态,自定义类,重写OnItemsChanged方法
class ScrollingListBox : ListBox
{
    protected override void OnItemsChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
    {
        if (e.NewItems == null) return;
        var newItemCount = e.NewItems.Count;

        if (newItemCount > 0)
            this.ScrollIntoView(e.NewItems[newItemCount - 1]);

        base.OnItemsChanged(e);
    }
}
  1. XAML中设置

<local:ScrollingListBox
    Grid.Row="0"
    BorderBrush="#D3D3D3"
    BorderThickness="0,1,0,1"
    ItemsSource="{Binding Path=Messages, ElementName=mainWindow}"
    ScrollViewer.HorizontalScrollBarVisibility="Disabled"
    ScrollViewer.CanContentScroll="False"
    SelectionMode="Extended">
    <ListBox.ItemTemplateSelector>
        <local:DateTemplateSelector ResTemplate="{StaticResource chatRes}" SendTemplate="{StaticResource chatSend}" />
    ListBox.ItemTemplateSelector>
    <ListBox.ItemContainerStyle>
        <Style BasedOn="{StaticResource listViewItemStyle}" TargetType="{x:Type ListBoxItem}" />
    ListBox.ItemContainerStyle>
local:ScrollingListBox>

如何调用OpenAI的接口,及各种常用参数的设置参见C#/.Net开发chatGPT、openAI
源码下载

Original: https://blog.csdn.net/weixin_44064908/article/details/128675960
Author: 步、步、为营
Title: 使用C#开发ChatGPT聊天程序

原创文章受到原创版权保护。转载请注明出处:https://www.johngo689.com/812717/

转载文章受原作者版权保护。转载请注明原作者出处!

(0)

大家都在看

亲爱的 Coder【最近整理,可免费获取】👉 最新必读书单  | 👏 面试题下载  | 🌎 免费的AI知识星球