feat: implement process view (UI) layout and styling - #10
Merged
Conversation
banuka20431
approved these changes
Jun 4, 2026
There was a problem hiding this comment.
Pull request overview
Adds a new WPF ProcessView window focused on UI layout/styling for a “Record Log” + “Analyse Records” screen, and wires it into the app startup so it can be launched directly.
Changes:
- Added
Views/ProcessView.xamlandViews/ProcessView.xaml.csfor the new Process UI screen. - Updated
App.xamlto start the application atProcessView. - Added
nexgensales.slnxsolution definition referencing the main project.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 5 comments.
| File | Description |
|---|---|
| Views/ProcessView.xaml.cs | New window code-behind for ProcessView. |
| Views/ProcessView.xaml | New XAML layout and styling for the Process screen (DataGrid + filters). |
| nexgensales.slnx | Adds a solution file pointing to nexgensales.csproj. |
| App.xaml | Changes the app startup window to Views/ProcessView.xaml. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
| xmlns:local="clr-namespace:NextGenSales" | ||
| StartupUri="Views/LoginView.xaml"> | ||
| StartupUri="Views/ProcessView.xaml"> |
Comment on lines
+1
to
+6
| <Window x:Class="nexgensales.Views.ProcessView" | ||
| 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:nexgensales.Views" |
| using System.Windows.Media.Imaging; | ||
| using System.Windows.Shapes; | ||
|
|
||
| namespace nexgensales.Views |
| <ContentPresenter IsHitTestVisible="false" Margin="15,0,30,0" VerticalAlignment="Center" HorizontalAlignment="Left" Content="{TemplateBinding SelectionBoxItem}"/> | ||
|
|
||
| <!-- Floating Popup container listing the executable filter items array --> | ||
| <Popup x:Name="Popup" Placement="Bottom" IsOpen="{TemplateBinding IsDropDownOpen}" AllowsTransparency="True" Focusable="False" PopupAnimation="Slide"> |
Comment on lines
+25
to
+29
| private void ComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e) | ||
| { | ||
|
|
||
| } | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.