{"id":23820308,"url":"https://github.com/newky2k/wpfwizardcontrol","last_synced_at":"2025-09-07T03:31:11.228Z","repository":{"id":50080973,"uuid":"89097433","full_name":"newky2k/WPFWizardControl","owner":"newky2k","description":"WPF Wizard control for Modern .NET and .Net framework","archived":false,"fork":false,"pushed_at":"2025-02-06T21:18:17.000Z","size":303,"stargazers_count":6,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-06T05:49:10.471Z","etag":null,"topics":["wizard","wpf","wpf-ui","wpf-ui-controls"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/newky2k.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-04-22T20:32:33.000Z","updated_at":"2025-07-24T20:35:01.000Z","dependencies_parsed_at":"2025-01-02T07:34:54.797Z","dependency_job_id":"232a4448-62ac-47d0-a021-c05b68f07f94","html_url":"https://github.com/newky2k/WPFWizardControl","commit_stats":{"total_commits":80,"total_committers":9,"mean_commits":8.88888888888889,"dds":0.7625,"last_synced_commit":"ef60173e61eb80fb62169223a93b9258941a17c0"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/newky2k/WPFWizardControl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/newky2k%2FWPFWizardControl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/newky2k%2FWPFWizardControl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/newky2k%2FWPFWizardControl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/newky2k%2FWPFWizardControl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/newky2k","download_url":"https://codeload.github.com/newky2k/WPFWizardControl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/newky2k%2FWPFWizardControl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273992299,"owners_count":25203711,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-07T02:00:09.463Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["wizard","wpf","wpf-ui","wpf-ui-controls"],"created_at":"2025-01-02T07:34:33.138Z","updated_at":"2025-09-07T03:31:10.893Z","avatar_url":"https://github.com/newky2k.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dsoft.WizardControl.WPF\nDsoft.WizardControl.WPF is a simple user control for WPF\n\nIt supports\n\n - Databiding\n - Multiple pages\n - Validation\n - Themeing\n\n## Getting Started\n\nThe WPF Wizard control is a `UserControl` based element and so it be used in other `UserControl` objects or directly in a `Window`\n\nInstall the Nuget package into you project via the Package Management Console\n\n    Install-Package Dsoft.WizardControl.WPF\n\nOr install it via the Visual Studio Nuget Manager\n\nIn your `Window` or `UserControl` add a new namespace\n\n    xmlns:wizard=\"clr-namespace:Dsoft.WizardControl.WPF;assembly=Dsoft.WizardControl.WPF\"\n\nThen you can add the `WizardControl` to the xaml\n\n    \u003cGrid\u003e\n        \u003cwizard:WizardControl \n            Title=\"{Binding Title}\"  \n            Pages=\"{Binding Pages}\"  \n            CancelCommand=\"{Binding CancelCommand}\" \n            FinishCommand=\"{Binding FinishCommand}\"/\u003e\n    \u003c/Grid\n\n## Pages\n\nThe `WizardControl` uses `UserControl` that implements the `IWizardPage` interface.\n\nThe `Pages` property of the `WizardControl` is expecting a `ObservableCollection\u003cIWizardPage\u003e` object which can be databound to a viewmodel or provided explicitly.\n\nThe `Title`, `CancelCommand` and `FinishCommand` can also be databound or provided explicitly.\n\nBelow is an example ViewModel using `System.Mvvm`\n\n    public class MainWindowViewModel : ViewModel\n    {\n\n        public string Title\n        {\n            get { return _title; }\n            set { _title = value; NotifyPropertyChanged(\"Title\"); }\n        }\n\n        public ObservableCollection\u003cIWizardPage\u003e Pages\n        {\n            get { return _pages; }\n            set { _pages = value; NotifyPropertyChanged(\"Pages\"); }\n        }\n\n        public ICommand CancelCommand\n        {\n            get\n            {\n                return new DelegateCommand(() =\u003e\n                {\n                    MessageBox.Show(\"Bye!\");\n\n                    OnRequestCloseWindow?.Invoke(this, false);\n                });\n            }\n        }\n\n        public ICommand FinishCommand\n        {\n            get\n            {\n                return new DelegateCommand(() =\u003e\n                {\n                    MessageBox.Show(\"Fin!\");\n\n                    OnRequestCloseWindow?.Invoke(this, false);\n                });\n            }\n        }\n    }\n\n## Theming\n\nThe appearance of the `WizardControl` header can be modified by overriding the theme\n\nYou can also change the `ButtonStyle` in the same way\n\nExample styling xaml that can be added to the App.xaml or other xaml resource file\n\n    xmlns:wizcont=\"clr-namespace:Dsoft.WizardControl.WPF;assembly=Dsoft.WizardControl.WPF\"\n\n    \u003cStyle TargetType=\"{x:Type wizcont:WizardControl}\"\u003e\n        \u003cSetter Property=\"ButtonStyle\" Value=\"{StaticResource AccentedSquareButtonStyle}\" /\u003e\n    \u003c/Style\u003e\n    \n    \u003cStyle TargetType=\"{x:Type wizcont:WizardCont}\"\u003e\n        \u003cSetter Property=\"HeaderTemplate\"\u003e\n            \u003cSetter.Value\u003e\n                \u003cDataTemplate\u003e\n                    \u003cStackPanel VerticalAlignment=\"Center\" Orientation=\"Vertical\" Margin=\"5\"\u003e\n                        \u003cTextBlock Text=\"{Binding Title,FallbackValue=Heading}\" FontSize=\"36\"  Foreground=\"{StaticResource AccentColorBrush}\"/\u003e\n                        \u003cTextBlock Text=\"{Binding SubTitle,FallbackValue=SubHeading}\" FontSize=\"12\" Foreground=\"Gray\"/\u003e\n                    \u003c/StackPanel\u003e\n                \u003c/DataTemplate\u003e\n            \u003c/Setter.Value\u003e\n        \u003c/Setter\u003e\n    \u003c/Style\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnewky2k%2Fwpfwizardcontrol","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnewky2k%2Fwpfwizardcontrol","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnewky2k%2Fwpfwizardcontrol/lists"}