{"id":20270244,"url":"https://github.com/teeotsa/easyform","last_synced_at":"2025-07-23T13:36:19.139Z","repository":{"id":116261506,"uuid":"449053105","full_name":"teeotsa/EasyForm","owner":"teeotsa","description":"Easily create PowerShell GUIs with cmdlets!","archived":false,"fork":false,"pushed_at":"2022-01-19T12:23:29.000Z","size":8,"stargazers_count":6,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-11-14T12:46:12.589Z","etag":null,"topics":["easy","gui","powershell","powershell-gui"],"latest_commit_sha":null,"homepage":"","language":"PowerShell","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/teeotsa.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":"2022-01-17T21:25:59.000Z","updated_at":"2023-10-29T14:40:58.000Z","dependencies_parsed_at":"2023-05-01T13:34:57.251Z","dependency_job_id":null,"html_url":"https://github.com/teeotsa/EasyForm","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teeotsa%2FEasyForm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teeotsa%2FEasyForm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teeotsa%2FEasyForm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teeotsa%2FEasyForm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/teeotsa","download_url":"https://codeload.github.com/teeotsa/EasyForm/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":233850881,"owners_count":18740152,"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","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":["easy","gui","powershell","powershell-gui"],"created_at":"2024-11-14T12:29:24.035Z","updated_at":"2025-01-14T05:40:44.640Z","avatar_url":"https://github.com/teeotsa.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Easy-Form\n\nEasyForm allows you to create PowerShell GUIs easily without any messy code!\n\n# Examples\n\nSome of the examples are listed down below to help you create anything with this module!\n\n```powershell\n#--- Import Custom Module ---#\n\nif (Test-Path (Join-Path -Path $PSScriptRoot -ChildPath \"EasyForm.psm1\"))\n{ \n    Unblock-File -LiteralPath (Join-Path -Path $PSScriptRoot -ChildPath \"EasyForm.psm1\") `\n    -ErrorAction SilentlyContinue | Out-Null\n\n    Import-Module -Name (Join-Path -Path $PSScriptRoot -ChildPath \"EasyForm.psm1\") -DisableNameChecking `\n    -Global -ErrorAction SilentlyContinue | Out-Null\n}\n```\n\n```powershell\n#--- Form Example ---#\n\n$Form = New-Form -Caption \"EasyForm Example\"\n$Form.ShowDialog() | Out-Null\n```\n\n```powershell\n#--- Form Example ---#\n\n$Form = New-Form -Caption \"EasyForm Example\"\nShow-Form -Parent $Form  | Out-Null\n```\n\n```powershell\n#--- Form Example ---#\n\n$Form = New-Form -Caption \"EasyForm Example\" -Height 200 -Width 400 -Color Red -BorderStyle FixedSingle\nShow-Form -Parent $Form | Out-Null\n```\n\n```powershell\n#--- Button Example ---#\n\n$ButtonFormExample = New-Form -Caption \"Button Example\" -Height 200 -Width 300 -VisualStyles\n$Button = New-Button -Text \"Press me!\" -Parent $ButtonFormExample -Width 100 -Color Black -Left 20 -Top 20\nAdd-Click -Parent $Button -ScriptBlock {\n\n    [System.Windows.Forms.MessageBox]::Show(\"Button example works?\")\n\n}\nShow-Form -Parent $ButtonFormExample\n```\n\n```powershell\n#--- Checkbox Example ---#\n\n$MainForm = New-Form -Caption \"LMAO\" -Height 200 -Width 200\n$Checkbox = New-Checkbox -Text \"Dark Mode\" -Parent ($MainForm) -Top 20 -Left 20\nAdd-Check -Parent $Checkbox -ScriptBlock {\n    if ($Checkbox.Checked)\n    {\n        [System.Windows.Forms.MessageBox]::Show(\"Checked\")\n    }\n    else{\n        [System.Windows.Forms.MessageBox]::Show(\"Not Checked\")\n    }\n}\nShow-Form -Parent $MainForm\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fteeotsa%2Feasyform","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fteeotsa%2Feasyform","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fteeotsa%2Feasyform/lists"}